System.Collections.Specialized.NameObjectCollectionBase.BaseGetAllKeys C# (CSharp) Method

BaseGetAllKeys() protected method

protected BaseGetAllKeys ( ) : String[]
return String[]
        protected String[] BaseGetAllKeys()
        {
            int n = _entriesArray.Count;
            String[] allKeys = new String[n];

            for (int i = 0; i < n; i++)
                allKeys[i] = BaseGetKey(i);

            return allKeys;
        }

Same methods

NameObjectCollectionBase::BaseGetAllKeys ( ) : string[]