Constructor Word
Word()
Constructs a new empty Word.
public Word()Word(string)
Constructs a new Mstring with a single letter.
public Word(string singleLetter)Parameters
- singleLetterstring
- The single letter of the new Word. 
Word(IEnumerable<string>)
Constructs a new Word from the given list of letters.
public Word(IEnumerable<string> chars)Parameters
- charsIEnumerable<string>
- Construct a new Word from the given list of letters.