public ClassWithArrayOfStruct() { Array = new StructWithULongField[4]; for (int i = 0; i < 4; i++) { Array[i] = new StructWithULongField((ulong)i); } }
public StructWithStructField(ulong value) { Field1 = 42; Field2 = 43; Value = new StructWithULongField(value); }