sdaiRemoveByIndex

The function removes the member of the specified list referenced by the specified index.

Syntax

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

[DllImport(enginedll, EntryPoint = "sdaiRemoveByIndex")]
public static extern void x86_sdaiRemoveByIndex(Int32 aggregate, Int32 index);

[DllImport(enginedll, EntryPoint = "sdaiRemoveByIndex")]
public static extern void x64_sdaiRemoveByIndex(Int64 aggregate, Int64 index);

public static void sdaiRemoveByIndex(Int64 aggregate, Int64 index)
		{
			if (IntPtr.Size == 4)
			{
				x86_sdaiRemoveByIndex((Int32)aggregate, (Int32)index);
			}
			else
			{
				x64_sdaiRemoveByIndex(aggregate, index);
			}
		}    

Property aggregate

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

Property index

Size: 64 bit / 8 byte (value)
...