stkirov

12.ASCII

Oct 25th, 2012
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. //Find online more information about ASCII (American Standard Code for Information Interchange)
  2. //and write a program that prints the entire ASCII table of characters on the console.
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6.  
  7. class Program
  8. {
  9.     static void Main()
  10.     {
  11.         Console.OutputEncoding = Encoding.Unicode;
  12.         for (int i = 0; i < 257; i++)
  13.         {
  14.             Console.WriteLine((char)i);
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment