sdaiRemoveByIndex
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); } }