sbyte[] 转byte【】
时间: 2023-04-04 07:03:33 浏览: 126
C#常用数据转换
可以使用以下代码将 sbyte[] 转换为 byte[]:
sbyte[] sbytes = new sbyte[] { -1, 2, -3, 4, -5 };
byte[] bytes = new byte[sbytes.Length];
Buffer.BlockCopy(sbytes, 0, bytes, 0, sbytes.Length);
阅读全文
C#常用数据转换