예제 #1
0
 public SerializablePointer(SerializableType type) :
     base(type, null, EmptyFields)
 {
 }
예제 #2
0
 public Field(SerializableType type, bool isArray, string name)
 {
     Type    = type;
     IsArray = isArray;
     Name    = name;
 }
 internal SerializableStructure(SerializableType type, SerializableStructure @base, IReadOnlyList <SerializableField> fields)
 {
     Type   = type ?? throw new ArgumentNullException(nameof(type));
     Base   = @base;
     Fields = fields ?? throw new ArgumentNullException(nameof(fields));
 }