AlphabetCheckers.Checker.Checker C# (CSharp) Method

Checker() public method

Initializes a new instance of the Checker class.
public Checker ( Alphabet alphabet ) : System.Collections
alphabet Alphabet /// The alphabet. ///
return System.Collections
        public Checker(Alphabet alphabet)
        {
            this.alphabet = new ChainsAlphabet();
            foreach (IBaseObject baseObject in alphabet)
            {
                this.alphabet.Add(baseObject);
            }
        }