mjc65

ddrop

Apr 22nd, 2020
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. public class Race
  2. {
  3.     public int Seconds;
  4.     public virtual void Display()
  5.     {
  6.         Console.WriteLine(Seconds);
  7.     }
  8. }
  9.  
  10. public interface IDisplayResult
  11. {
  12.     void Display();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment