Example #1
0
 public static void Main(string[] args)
 {
     Console.WriteLine(typeof(CA).Name);
     CB.DoSomething();
     CC.DoSomething();
     CD.DoSomething();
     Console.ReadKey();
 }
Example #2
0
 public static void DoSomething()
 {
     Console.WriteLine(typeof(CC).Name);
     CD.DoSomething();
     CF.DoSomething();
 }