bigloo.foreign.ULONG_TO_INT C# (CSharp) Method

ULONG_TO_INT() public static method

public static ULONG_TO_INT ( uint n ) : int
n uint
return int
        public static int ULONG_TO_INT( uint n )
        {
            return (int)n;
        }
foreign