Skip to content

Instantly share code, notes, and snippets.

@JefClaes
Created October 19, 2014 11:03
Show Gist options
  • Select an option

  • Save JefClaes/e9137dcd4bb8a8636c95 to your computer and use it in GitHub Desktop.

Select an option

Save JefClaes/e9137dcd4bb8a8636c95 to your computer and use it in GitHub Desktop.
Recursion in C#
static void Main()
{
Recursive(0);
}
static void Recursive(int i)
{
Console.WriteLine(i);
Recursive(i + 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment