Example #1
0
 public void AddCollectionField(string name, TypeBase type, IDictionary <string, object> attachedData)
 {
     _fields.Add(new Field(name, _fields.Count, type, 1, int.MaxValue, attachedData, this));
 }
Example #2
0
 internal Field(string name, int id, TypeBase type, IDictionary <string, object> attachedData, CompositeType containingType)
     : this(name, id, type, 1, 1, attachedData, containingType)
 {
 }