Exemplo n.º 1
0
 public SomeType(string s, SomeNestedType nested, int[] array, int i)
 {
     _string = s;
     Nested = nested;
     _array = array;
     Int = i;
 }
Exemplo n.º 2
0
 public SomeNestedType(SomeNestedType anotherNested, string anotherString)
 {
     AnotherNested = anotherNested;
     AnotherString = anotherString;
 }