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); }
public static char UTF16BytesToChar(byte b0, byte b1) { return((char)UTFConverter.GetCodeValueUTF16(b0, b1)); }
public static char UTF16BytesToLowerChar(byte b0, byte b1) { char ch = (char)UTFConverter.GetCodeValueUTF16(b0, b1); return(Char.ToLower(ch)); }