Skip to content

Instantly share code, notes, and snippets.

@VladimirReshetnikov
Created February 12, 2014 02:43
Show Gist options
  • Save VladimirReshetnikov/8949089 to your computer and use it in GitHub Desktop.
Save VladimirReshetnikov/8949089 to your computer and use it in GitHub Desktop.
using System;
class Program
{
static void Main()
{
// Print all chars from char.MinValue to char.MaxValue, inclusive
for (char ch = char.MinValue; ch <= char.MaxValue; ch++)
{
Console.WriteLine(ch);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment