It's dangerous to code alone! Take this.

Countdown

The following is one possible solution to this challenge.

using System;

Countdown(10);

void Countdown(int number)
{
    if (number == 0) return;

    Console.WriteLine(number);
    Countdown(number - 1);
}