我得到这个空引用错误
private int Cont;
private List<string> myStrings;
private ArrayList str;
private string[] strs;
myclass()
{
Cont = 0;
myStrings = new List<string>();
str = new ArrayList();
strs =new string[27];
for(int i = 0; i < 27;i++)
{
strs[i] = "";
}
}
public void AddTexture(string name)
{
Console.WriteLine("Count "+Cont);
Console.WriteLine("ive got the texture "+name);
myStrings.Add(name);
//strs[Cont] = name;
//str.Add(name);
Cont++;
}
如您所见,我已尝试使用列表,数组列表和数组,但当我尝试添加第一个值时,它们都不起作用第一个写行
知道我做错了什么吗?谢谢你,错误是每当我试图在 2 console.writeline 之后填充数组、arraylist 或函数 AddTexture 中的列表时,我已经评论了这两行,但那是因为这些是我尝试使用数组、arraylist 和名单