Esempio n. 1
0
 public TestObject(List <string> nestedStrings) : this()
 {
     Nested = new NestedObject(nestedStrings);
 }
Esempio n. 2
0
 public TestObject(List <int> nestedInts) : this()
 {
     Nested = new NestedObject(nestedInts);
 }
Esempio n. 3
0
 public TestObject()
 {
     Nested = new NestedObject();
 }