public override string ToString() { return($"Word:'{Word}', Tag:'{Tag.ToString()}', NormalForm: '{NormalForm}', Score: '{Score}'"); }
// Parse is just a container object for word information and should be created via MorphAnalyzer // So we make it's constructor internal internal Parse(string word, Tag tag) { Word = word; Tag = tag; }