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