Ejemplo n.º 1
0
 public bool Contains(Crypter crypter)
 {
     return(IndexOf(crypter) >= 0);
 }
Ejemplo n.º 2
0
 public int IndexOf(Crypter crypter)
 {
     return(_crypters.IndexOf(crypter));
 }
Ejemplo n.º 3
0
 public void Add(Crypter crypter)
 {
     Insert(Count, crypter);
 }