Ejemplo n.º 1
0
        public static void UTF16BytesToLower(ref byte b0, ref byte b1)
        {
            char ch = (char)UTFConverter.GetCodeValueUTF16(b0, b1);

            ch = Char.ToLower(ch);
            UTFConverter.ConvertCodeValueToBytesUTF16(ch, ref b0, ref b1);
        }
Ejemplo n.º 2
0
 public static char UTF16BytesToChar(byte b0, byte b1)
 {
     return((char)UTFConverter.GetCodeValueUTF16(b0, b1));
 }
Ejemplo n.º 3
0
        public static char UTF16BytesToLowerChar(byte b0, byte b1)
        {
            char ch = (char)UTFConverter.GetCodeValueUTF16(b0, b1);

            return(Char.ToLower(ch));
        }