System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.Create C# (CSharp) Method

Create() public method

Initialize the XmlSortKeyAccumulator.
public Create ( ) : void
return void
        public void Create()
        {
            if (_keys == null)
                _keys = new XmlSortKey[DefaultSortKeyCount];

            _pos = 0;
            _keys[0] = null;
        }