gpt4 book ai didi

c# - 如何声明 3 列 4 行的数组

转载 作者:行者123 更新时间:2023-11-30 19:28:09 24 4
gpt4 key购买 nike

如何声明具有 4 行和 3 列的数组。其中 2 列是 int,另一列是 string.help!

        string[, ,] threeD = new string[3, 10, 10];
threeD[1, 807301, miama]= threeD;

最佳答案

我给你一个开始,上一个类:

class MyItem
{
public int oneInt {get;set;}
public int twoInt {get;set;}
public string oneString {get;set;}
public MyItem(int oneInt, int intTwo, string oneString)
{
this.oneInt = oneInt;
this.twoInt = intTwo;
this.oneString = oneString;

}
}

然后创建一个包含 4 个类的列表:

var myFourRowArray = new List<MyItem>();
myFourRowArray.Add(new MyItem(1,252435,"first"));
myFourRowArray.Add(new MyItem(2,235423,"second"));
myFourRowArray.Add(new MyItem(3,454335,"third"));
myFourRowArray.Add(new MyItem(4,346435,"fourth"));

关于c# - 如何声明 3 列 4 行的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16432661/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com