sdaiUnsetArrayByItr

The function restores the unset (not assigned a value) status of a member at the position identified by the iterator in the array associated with the iterator.

Syntax

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

[DllImport(enginedll, EntryPoint = "sdaiUnsetArrayByItr")]
public static extern void x86_sdaiUnsetArrayByItr(Int32 iterator);

[DllImport(enginedll, EntryPoint = "sdaiUnsetArrayByItr")]
public static extern void x64_sdaiUnsetArrayByItr(Int64 iterator);

public static void sdaiUnsetArrayByItr(Int64 iterator)
		{
			if (IntPtr.Size == 4)
			{
				x86_sdaiUnsetArrayByItr((Int32)iterator);
			}
			else
			{
				x64_sdaiUnsetArrayByItr(iterator);
			}
		}    

Property iterator

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