System.Xml.XmlBaseReader.AttributeSorter.Sort C# (CSharp) Method

Sort() public method

public Sort ( XmlAttributeNode attributeNodes, int attributeCount ) : bool
attributeNodes XmlAttributeNode
attributeCount int
return bool
            public bool Sort(XmlAttributeNode[] attributeNodes, int attributeCount)
            {
                _attributeIndex1 = -1;
                _attributeIndex2 = -1;
                _attributeNodes = attributeNodes;
                _attributeCount = attributeCount;
                bool sorted = Sort();
                _attributeNodes = null;
                _attributeCount = 0;
                return sorted;
            }

Same methods

XmlBaseReader.AttributeSorter::Sort ( ) : bool