Advertisement
mjc65

DDrop2

Apr 22nd, 2020
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. Console.WriteLine("\nRace and Footrace example:");
  2.             var r1 = new FootRace();
  3.             var r2 = r1 as IDisplayResult;
  4.             r1.Seconds = 99;
  5.             r1.Display();
  6.             r2.Display();
  7.             r1.DisplayRaw();
  8.            
  9. Console.ReadKey();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement