PERWAPI.NativeType.GetNativeType C# (CSharp) Method

GetNativeType() static private method

static private GetNativeType ( int ix ) : NativeType
ix int
return NativeType
        internal static NativeType GetNativeType(int ix)
        {
            if (ix < nativeTypes.Length)
                return nativeTypes[ix];
            return null;
        }