Exemplo n.º 1
0
 public override string ToString()
 {
     if (Phonemes is null)
     {
         return("Recline: {undefined}");
     }
     else if (Description is null)
     {
         return($"Recline: [{string.Join(" ", Phonemes)}]");
     }
     else
     {
         return($"Recline: {Description} [{string.Join(" ", Phonemes.Select(n => n.Alias))}]");
     }
 }
Exemplo n.º 2
0
 public string GetPhonemeLetters()
 {
     return(string.Join(" ", Phonemes.Select(each => each.Letters)));
 }
Exemplo n.º 3
0
 public string GetPhonemeText()
 {
     return(string.Join(" ", Phonemes.Select(each => each.Text)));
 }