Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
形式のuhort[]値があります0-65536。しかし、このグレースケール値がバイト形式で必要です!
uhort[]
0-65536
ushort 値をバイト値に変換するにはどうすればよいですか?
ありがとう
byte value = (byte)(array[index] >> 8);