c# 中0x02和0x03怎么合并成0x23,两个byte【】【】,组合成一个byte【】,怎么做啊?两个byte【】【】,组合成一个byte【】
int a = 0x02; int b = 0x03;byte result = (byte)(a * 16 + b);