validateGetAggrIndArray

Array of indices for each aggregation size is aggrLevel.

Syntax

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

[DllImport(enginedll, EntryPoint = "validateGetAggrIndArray")]
public static extern Int64 x86_validateGetAggrIndArray(Int32 issue);

[DllImport(enginedll, EntryPoint = "validateGetAggrIndArray")]
public static extern Int64 x64_validateGetAggrIndArray(Int64 issue);

public static Int64 validateGetAggrIndArray(Int64 issue)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_validateGetAggrIndArray((Int32)issue);
				return _result;
			}
			else
			{
				return x64_validateGetAggrIndArray(issue);
			}
		}    

Property issue

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