Exemple #1
0
 static Child1()
 {
     Thread.Sleep(400);
     Console.WriteLine("This is : Child1 :: Constructor :: Static :");
     child1StaticFildReadOnly = new Traker("This is : Child1 :: Constructor :: child1StaticFildReadOnly :: initialization :");
 }
Exemple #2
0
 static Base()
 {
     Console.WriteLine("This is : Base :: Constructor :: Static :");
     baseStaticFildReadOnly = new Traker("This is : Base :: Constructor :: baseStaticFildReadOnly :: initialization :");
 }
Exemple #3
0
 public Child1() : base("Call from Child1")
 {
     Thread.Sleep(400);
     Console.WriteLine("This is : Child1 :: Constructor :: ");
     child1FildReadOnly = new Traker("This is : Child1 :: Constructor :: child1FildReadOnly :: initialization :");
 }