예제 #1
0
파일: Program.cs 프로젝트: paulomf/DynaMD
        public ClassWithArrayOfStruct()
        {
            Array = new StructWithULongField[4];

            for (int i = 0; i < 4; i++)
            {
                Array[i] = new StructWithULongField((ulong)i);
            }
        }
예제 #2
0
파일: Program.cs 프로젝트: paulomf/DynaMD
 public StructWithStructField(ulong value)
 {
     Field1 = 42;
     Field2 = 43;
     Value  = new StructWithULongField(value);
 }