Conte quantas palavras em cada frase

Eu estou preso em como contar quantas palavras estão em cada frase, um exemplo disso é:string sentence = "hello how are you. I am good. that's good." e sai como:

//sentence1: 4 words
//sentence2: 3 words
//sentence3: 2 words

Eu posso pegar o número de frases

    public int GetNoOfWords(string s)
    {
        return s.Split(new char[] { '.' }, StringSplitOptions.RemoveEmptyEntries).Length;
    }
    label2.Text = (GetNoOfWords(sentance).ToString());

e eu posso pegar o número de palavras em toda a string

    public int CountWord (string text)
    {
        int count = 0;
        for (int i = 0; i < text.Length; i++)
        {
            if (text[i] != ' ')
            {
                if ((i + 1) == text.Length)
                {
                    count++;
                }
                else
                {
                    if(text[i + 1] == ' ')
                    {
                        count++;
                    }
                }
            } 
        }
        return count;
    }

então button1

        int words = CountWord(sentance);
        label4.Text = (words.ToString());

Mas Eu não posso contar quantas palavras estão em cada sentença.

questionAnswers(7)

yourAnswerToTheQuestion