You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Platob (via GitHub)" <gi...@apache.org> on 2023/04/10 08:07:50 UTC

[GitHub] [arrow] Platob opened a new issue, #34998: [C#] Create nested structure

Platob opened a new issue, #34998:
URL: https://github.com/apache/arrow/issues/34998

   ### Describe the usage question you have. Please include as many useful details as  possible.
   
   
   Hello,
   
   I would like to create:
   ListArray of string[], int[], etc
   Dictionary<string, string>
   Struct
   
   from c# objects arrays
   
   Do you have any exemple to do so ?
   
   Something like
   
   ```c#
   var stringArrayValues = new string[count][];
   var stringArrayBuilder = new ListArray.Builder(field.DataType);
   foreach (string[] array in stringArrayValues)
   {
       stringArrayBuilder.Append(array);
   }
   return stringArrayBuilder.Build();
   ```
   
   ### Component(s)
   
   C#


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] Platob closed issue #34998: [C#] Doc on how to create nested structure

Posted by "Platob (via GitHub)" <gi...@apache.org>.
Platob closed issue #34998: [C#] Doc on how to create nested structure
URL: https://github.com/apache/arrow/issues/34998


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org