Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public interface Carryable
  2. {
  3. public void Carry();
  4. }
  5.  
  6. public class Handbag : Carryable
  7. {
  8. public void Carry()
  9. {
  10. Console.WriteLine("Carry the Handbag");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement