Skip to content

Instantly share code, notes, and snippets.

@VladimirReshetnikov
Created January 29, 2014 00:38
Show Gist options
  • Select an option

  • Save VladimirReshetnikov/8679473 to your computer and use it in GitHub Desktop.

Select an option

Save VladimirReshetnikov/8679473 to your computer and use it in GitHub Desktop.
using System;
static class Program
{
static void Main()
{
for (var ch = char.MinValue; ch <= char.MaxValue; ch++)
{
Console.WriteLine(ch);
}
Console.WriteLine("Done"); // Unreachable code
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment