gongdehui

gongdehui

  • NA
  • 63
  • 0

What 's the problem?

Oct 31 2004 11:17 AM
//C# code: public static System.UInt16 MAKEWORD(byte a, byte b) { return (ushort)a | ((ushort)b << 8); } when compiling,the error "can not implicitly convert type 'int' to 'ushot'" occur. what's the problem?

Answers (5)