Como encontrar várias ocorrências com grupos regex?

Por que o seguinte código resulta em:

houve 1 correspondências para 'the'

e não:

houve 3 correspondências para 'the'

using System;
using System.Text.RegularExpressions;

namespace TestRegex82723223
{
    class Program
    {
        static void Main(string[] args)
        {
            string text = "C# is the best language there is in the world.";
            string search = "the";
            Match match = Regex.Match(text, search);
            Console.WriteLine("there was {0} matches for '{1}'", match.Groups.Count, match.Value);
            Console.ReadLine();
        }
    }
}

questionAnswers(4)

yourAnswerToTheQuestion