Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public interface IStudent
  2. {
  3. void PrintFullName();
  4. }
  5.  
  6. public class BaseStudent
  7. {
  8. public void PrintFullName()
  9. {
  10. // Implementation
  11. }
  12. }
  13.  
  14. public class Student : BaseStudent, IStudent
  15. {
  16. public void PrintFullName()
  17. {
  18. // Implementation
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement