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

Clone() public method

public Clone ( Positions positions ) : SyntaxTreeNode
positions Positions
return SyntaxTreeNode
        public override SyntaxTreeNode Clone(Positions positions) {
            return new LeafNode(positions.Add(positions[pos].symbol, positions[pos].particle));
        }