Apache.Arrow.C.CArrowArray
namespace Apache.Arrow.C
{
public struct CArrowArray
{
public long length;
public long null_count;
public long offset;
public long n_buffers;
public long n_children;
public unsafe byte** buffers;
public unsafe CArrowArray** children;
public unsafe CArrowArray* dictionary;
public unsafe void* private_data;
public unsafe static CArrowArray* Create();
public unsafe static void Free(CArrowArray* array);
public unsafe static void CallReleaseFunc(CArrowArray* array);
}
}