Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace clases
  4. {
  5. public class BlogWriter : Writer
  6. {
  7. public BlogWriter(string firstName, string lastName) : base(firstName, lastName)
  8. {
  9. }
  10.  
  11. public override void Vlog()
  12. {
  13. Console.WriteLine("I vlog using my GoPro.");
  14. }
  15.  
  16. public override void Write()
  17. {
  18. Console.WriteLine("I write for my own blog.");
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement