Advertisement
Gillito

Untitled

Jun 18th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApplication49
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.         }
  15.     }
  16.  
  17.     class Car
  18.     {
  19.        
  20.     }
  21.  
  22.     class Engine
  23.     {
  24.         public virtual int StartEngine()
  25.         {
  26.             return 0;
  27.         }
  28.     }
  29.  
  30.     class Electro : Engine
  31.     {
  32.  
  33.     }
  34.  
  35.     class Sl4 : Engine
  36.     {
  37.  
  38.     }
  39.  
  40.     class sl6 : Engine
  41.     {
  42.  
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement