sdaiTestArrayByItr

The function tests whether the member of the specified array referenced by the specified index position has a value.

Syntax

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

[DllImport(enginedll, EntryPoint = "sdaiTestArrayByItr")]
public static extern bool x86_sdaiTestArrayByItr(Int32 iterator);

[DllImport(enginedll, EntryPoint = "sdaiTestArrayByItr")]
public static extern bool x64_sdaiTestArrayByItr(Int64 iterator);

public static bool sdaiTestArrayByItr(Int64 iterator)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_sdaiTestArrayByItr((Int32)iterator);
				return _result;
			}
			else
			{
				return x64_sdaiTestArrayByItr(iterator);
			}
		}    

Property iterator

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