blah blah blah is here! blah blah » Close

1
votes
1 answers

List question

How can I do the following using a inherited class? Thanks Jeff namespace question { public class Dog { public string Breed { get; set; } } public class Dogs : List<Dog> { } ...

Feedback