Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class Car{
  2. public int doors {get;set}
  3. public int wheels {get;set}
  4. public string make {get;set}
  5. public string model {get;set}
  6.  
  7. public Car(){}
  8. }
  9.  
  10. public class CarCollection{};
  11.  
  12. public List<Car> GetAllCars()
  13. {
  14. ...
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement