Esempio n. 1
0
 public SelfRef1(bool init)
 {
     Data = this;
 }
Esempio n. 2
0
 public SelfRef2(bool init)
 {
     Data    = new SelfRef1(true);
     RefData = Data;
 }
Esempio n. 3
0
 public DCExplicitInterfaceIObjRef(bool init)
 {
     data = new SelfRef1(true);
 }