创建对象数组C#错误:System.Null.RefernceException

时间:2019-05-18 18:21:27

标签: c# arrays .net visual-studio-2017

我有一个VendingItem类,我正在尝试创建对象数组,但是在运行时提示错误,请帮助。我正在使用C#Visual Studio 2017

        Vending[]v= new Vending[2];
        v[0].description="Potato chips";
        v[0].inventory=5;
        v[0].Price=1.99;

        v[1].description="Energy bar";
        v[1].inventory=2;
        v[1].Price=2.44;

0 个答案:

没有答案