mjc65

new

May 5th, 2020
939
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2.  
  3. namespace create_class
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Vampire Dracula = new Vampire();
  10.             Console.WriteLine("These will {0}", Dracula.Attack());
  11.  
  12.             Werewolf Fido = new Werewolf();
  13.             Console.WriteLine("These will {0}", Fido.Attack());
  14.  
  15.             Zombie Jack = new Zombie();
  16.             Console.WriteLine("These will {0}", Jack.Attack());
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment