示例#1
0
        public override Field Clone()
        {
            var clone = new MFInt32();

            foreach (var child in Values)
            {
                clone.AppendValue((SFInt32)child.Clone());
            }
            return(clone);
        }
示例#2
0
 public void Visit(MFInt32 field)
 {
     throw new NotImplementedException();
 }
 public void visit(MFInt32 field) {
     throw new NotImplementedException();
 }
示例#4
0
 public void visit(MFInt32 field) {
     field.clearValues();
     ParseMField((subcontext) => {
         var child = new SFInt32();
         this.visit(child);
         field.AppendValue(child);
     });
 }