Exemplo n.º 1
0
 private protected override string KeyFromIndexCore(int index)
 {
     if (m_uniqueIdMaping != null)
     {
         return(m_uniqueIdMaping.KeyFromIndex(index));
     }
     else
     {
         throw new NotImplementedException();
     }
 }
Exemplo n.º 2
0
 string KeyFromIndexCore(int index)
 {
     if (m_uniqueIdMaping != null)
     {
         return(m_uniqueIdMaping.KeyFromIndex(index));
     }
     else
     {
         throw new InvalidOperationException("ID mapping not set.");
     }
 }