OLAPElementNativeArray
Use OLAPElementNativeArray to store lists of OLAPElementNative objects:
OLAPElementNativeArray list = [ N”Hello”, N”world” ];
Note: These lists must always contain at least one element.
To create an empty OLAPElementNativeArray, use the CreateOLAPElementNativeArray() function:
OLAPElementNativeArray empty = CreateOLAPElementNativeArray();
To iterate over OLAPElementNativeArray objects, use foreach:
void Print(OLAPElementNativeArray list)
{
foreach (OLAPElementNative e in list)
{
WriteLine(e);
}
}