Esempio n. 1
0
        public ClassWithArrayOfStruct()
        {
            Array = new StructWithULongField[4];

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