慕姐0194676
2018-12-20 17:05
List<Dog> list = new List<Dog>();
list.Add(new Dog("A"));
list.Add(new Dog("B"));
list.Add(new Dog("C"));
我在用list定义完之后 Dog 会报错 这样怎么解决呢
是不是你的Dog类定义的有问题啊
public class Dog
{
private string name;
public Dog(string name){
this.name = name;
}
}
List<Dog> list = new List<Dog>();
list.Add(new Dog("A"));
list.Add(new Dog("B"));
list.Add(new Dog("C"));
dog累设置有问题吧
C#面向对象编程
68857 学习 · 153 问题
相似问题