Exemple #1
0
 public int indexValue(string nome)
 {
     if (Valores.Count > 0)
     {
         return(Valores.BinarySearch(nome));
     }
     else
     {
         return(-1);
     }
 }