我编写了使用2d数组的C#代码。 以下是代码:
class HelloWorld
{
static void Main(string[] args)
{
Person[,] _personArray = new Person[3,3];
int ages = _personArray[1,1].age;
Console.WriteLine(ages.ToString());
Console.ReadKey();
}
}
public class Person
{
public int age = 21;
}
然而,它给了我一个例外:
“Unhandled Exception:System.NullReferenceException:对象引用未设置为HelloWorldApplication.HelloWorld.Main(System.String [] args)[0x00000]中对象的实例:0
[ERROR]致命的非处理异常:System.NullReferenceException:对象引用未设置为HelloWorldApplication.HelloWorld.Main(System.String [] args)[0x00000]中对象的实例:0“
任何人都可以帮助我并告诉我我的代码有什么问题吗?我们将不胜感激您的帮助:)