System.Collections.Specialized.NameObjectCollectionBase.BaseGetKey C# (CSharp) Метод

BaseGetKey() защищенный Метод

protected BaseGetKey ( int index ) : String
index int
Результат String
        protected String BaseGetKey(int index)
        {
            NameObjectEntry entry = (NameObjectEntry)_entriesArray[index];
            return entry.Key;
        }

Same methods

NameObjectCollectionBase::BaseGetKey ( int index ) : string

Usage Example

Пример #1
0
 public virtual string Get(int index)
 {
     return(m_collection.BaseGetKey(index));
 }
All Usage Examples Of System.Collections.Specialized.NameObjectCollectionBase::BaseGetKey