想要将派生类对象添加到基类列表

时间:2015-01-08 01:26:21

标签: c# list generics

对c#来说是新手。研究,发现可以像在java中完成它但不确定我错在哪里

namespace WcfService3
{    
    public class Animal
    {
        public string Name { get; set; }
    }

}

namespace WcfService3
{   
    public class Dog:Animal
    {
    }

}

List<Animal> listAnimal = new List<Animal>();

Dog obDog = new Dog();
obDog.Name = "Pluto";
listAnimal.Add(obDog );

0 个答案:

没有答案