bigloo.foreign.BYTE_TO_ULONG C# (CSharp) Method

BYTE_TO_ULONG() public static method

public static BYTE_TO_ULONG ( sbyte n ) : uint
n sbyte
return uint
        public static uint BYTE_TO_ULONG(sbyte n)
        {
            return (uint)n;
        }
foreign