public bool Contains(Crypter crypter) { return(IndexOf(crypter) >= 0); }
public int IndexOf(Crypter crypter) { return(_crypters.IndexOf(crypter)); }
public void Add(Crypter crypter) { Insert(Count, crypter); }