错误,无法将int转换为byte [] C#

时间:2015-12-14 09:30:23

标签: c#

我有这个错误。你能帮帮我吗?

byte[] memory = Console.SetMemory((garageoffset + 0xb0) + (selcar * 400), 4);

错误在" 4" ScreenShot错误:The error

1 个答案:

答案 0 :(得分:0)

错误表示 byte [] ,而不是字节。您需要传递一个字节数组,而不是单个字节/ int。

我不知道你想要传递的是什么,如果它是一个内部为4的单元素阵列,请使用

byte[] memory = SetMemory((0 + 0xb0) + (0 * 400), new byte[] { 4 });