BaseGetKey() protected method

protected BaseGetKey ( int index ) : String
index int
return String
Esempio n. 1
0
 public virtual string Get(int index)
 {
     return(m_collection.BaseGetKey(index));
 }
            // Indexed access

            /// <devdoc>
            ///    <para> Gets the key at the specified index of the collection.</para>
            /// </devdoc>
            public virtual string?Get(int index)
            {
                return(_coll.BaseGetKey(index));
            }
Esempio n. 3
0
 // Get the key at a specific index.
 public String Get(int index)
 {
     return(c.BaseGetKey(index));
 }