Advertisement
stanevplamen

01.2.12.ASCIITable

Apr 27th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. using System;
  2.  
  3. class ASCIITable
  4. {
  5.     static void Main()
  6.     {
  7.         Console.WriteLine("ASCII characters table:");
  8.         for (int a = 0 ; a < 254; a++)
  9.         {
  10.             string s = char.ConvertFromUtf32(a);
  11.             Console.WriteLine("Code number {0} is \'{1}\'",a,s);
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement