有没有办法在二维数组中存储int和字节?
例如:
int[,] WeaponAddresses = new int[,] { { 0x4F0, 00 00 00 00 00 00 00 00 04 05 01 01 01 01 01 01 } };
我很感激任何帮助
答案 0 :(得分:2)
使用int和byte属性创建一个结构,并声明该结构的一维数组。
public struct MyObj
{
public int IntValue {get;set;}
public byte[] ByteValue {get;set;}
}
public class TestClass
{
MyObj[] arrayOfObjects;
}