In c++
struct RAK_DLL_EXPORT Page
{
bool isLeaf;
int size;
KeyType keys[order];
DataType data[order];
Page<KeyType, DataType, order> *next;
Page<KeyType, DataType, order> *previous;
Page *children[order+1];
};
in C#, it does not has the interface to access the keys and data? How to solve it?