问答详情
源自:6-1 集合(上)

定义Dog类型时报错

            List<Dog> list = new List<Dog>();

            list.Add(new Dog("A"));

            list.Add(new Dog("B"));

            list.Add(new Dog("C"));

我在用list定义完之后 Dog 会报错 这样怎么解决呢

提问者:慕姐0194676 2018-12-20 17:05

个回答

  • 慕的地7207464
    2019-02-28 17:48:06

    是不是你的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"));


  • 慕码人8482567
    2019-01-02 23:38:46

    dog累设置有问题吧