¿Cómo encontrar múltiples ocurrencias con grupos regex?

¿Por qué el siguiente código resulta en:

hubo 1 partidos para 'the'

y no:

hubo 3 coincidencias 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();
        }
    }
}