Exemplo n.º 1
0
 public bool EstConsonneRedoublee()
 {
     return((Last - First == 1) && // le phoneme contient exactement deux lettres
            PW.GetChar(First) == PW.GetChar(Last) && // qui sont égales
            EstConsonne()); // et il s'agit bien d'une consonne
 }