public override Field Clone() { var clone = new MFInt32(); foreach (var child in Values) { clone.AppendValue((SFInt32)child.Clone()); } return(clone); }
public void Visit(MFInt32 field) { throw new NotImplementedException(); }
public void visit(MFInt32 field) { throw new NotImplementedException(); }
public void visit(MFInt32 field) { field.clearValues(); ParseMField((subcontext) => { var child = new SFInt32(); this.visit(child); field.AppendValue(child); }); }