sdaiReindexArray

The function resizes the specified array instance setting the lower, or upper index, or both, based upon the current population of the application schema.

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "sdaiReindexArray")]
public static extern void x86_sdaiReindexArray(Int32 array);

[DllImport(enginedll, EntryPoint = "sdaiReindexArray")]
public static extern void x64_sdaiReindexArray(Int64 array);

public static void sdaiReindexArray(Int64 array)
		{
			if (IntPtr.Size == 4)
			{
				x86_sdaiReindexArray((Int32)array);
			}
			else
			{
				x64_sdaiReindexArray(array);
			}
		}    

Property array

Size: 64 bit / 8 byte (reference)
???.