bigloo.foreign.CHAR_TO_UCHAR C# (CSharp) Method

CHAR_TO_UCHAR() public static method

public static CHAR_TO_UCHAR ( byte c ) : int
c byte
return int
        public static int CHAR_TO_UCHAR( byte  c )
        {
            return (c & 0xFF);
        }
foreign