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

BaseGetKey() protected method

protected BaseGetKey ( int index ) : String
index int
return String
        protected String BaseGetKey(int index)
        {
            NameObjectEntry entry = (NameObjectEntry)_entriesArray[index];
            return entry.Key;
        }

Same methods

NameObjectCollectionBase::BaseGetKey ( int index ) : string

Usage Example

Esempio n. 1
0
 public virtual string Get(int index)
 {
     return(m_collection.BaseGetKey(index));
 }
All Usage Examples Of System.Collections.Specialized.NameObjectCollectionBase::BaseGetKey