Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public abstract class Word
  2. {
  3. private string word;
  4. public abstract string Word;
  5. }
  6.  
  7. public class Boat: Word
  8. {
  9. public string Word => { get { return "Boat"; } }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement