public Mixed1(bool init)
 {
     Data1 = new SimpleDC(true);
     Data2 = new SimpleDCWithRef(true);
     Data3 = new SimpleDCWithSimpleDMRef(true);
     Data4 = new SimpleStructDC(true);
     Data5 = new SimpleStructDCWithRef(true);
 }
예제 #2
0
 public DMWithRefInCollection1(bool init)
 {
     InnerData1 = new Guid("a6d053ed-f7d4-42fb-8e56-e4b425f26fa9").ToString();
     Data1      = new SimpleDCWithSimpleDMRef(true);
     List1      = new List <SimpleDCWithSimpleDMRef>();
     List1.Add(Data1);
     List1.Add(new SimpleDCWithSimpleDMRef(true));
     List1.Add(List1[1]);
     List1[1].Data = InnerData1;
 }