C резкий тип слова и рассчитайте, сколько буквы внутри этого слова
public static int countLetters(string word, string countableLetter)
{
int count = 0;
foreach (char c in word)
{
count++;
}
return count;
}
Stormy Stag