C#store int和二维数组内的字节

时间:2016-12-17 16:48:26

标签: c# arrays

有没有办法在二维数组中存储int和字节?

例如:

int[,] WeaponAddresses = new int[,] { { 0x4F0, 00 00 00 00 00 00 00 00 04 05 01 01 01 01 01 01 } };

我很感激任何帮助

1 个答案:

答案 0 :(得分:2)

  1. 你可以把它变成一个对象数组。
  2. 使用int和byte属性创建一个结构,并声明该结构的一维数组。

    public struct MyObj
    {
      public int IntValue {get;set;}
      public byte[] ByteValue {get;set;}
    }     
    
    public class TestClass
    {
       MyObj[] arrayOfObjects;
    }