System.Xml.Schema.LeafRangeNode.Clone C# (CSharp) Method

Clone() public method

public Clone ( Positions positions ) : SyntaxTreeNode
positions Positions
return SyntaxTreeNode
        public override SyntaxTreeNode Clone(Positions positions) {
            return new LeafRangeNode(this.Pos, this.min, this.max);
        }