5
Answers

What 's the problem?

Ask a question
gongdehui

gongdehui

19y
2.2k
1
//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)