public static int countLetters(string word, string countableLetter) { int count = 0; foreach (char c in word) { count++; } return count; }