Advertisement
Guest User

Student

a guest
Jan 24th, 2015
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7.  
  8. class Student : Person
  9. {
  10. private uint uniqueClassNumber;
  11. public uint UniqueClassNumber
  12. {
  13. get
  14. {
  15. return this.uniqueClassNumber;
  16. }
  17. set
  18. {
  19. this.uniqueClassNumber = value;
  20. }
  21. }
  22. public Student() : base(name, details) { }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement