public static void Main()
Console.WriteLine(countOccs("The boy and the girl went to the park. The park was called ' The Lovely Park '.","the"));
public static int countOccs(string text, string word) {
string[] words = text.Split(' ');
for(int i = 0; i < words.GetLength(0); i++) {
if ((string) words.GetValue(i) == word) {