Advertisement
Ziomnexpl

znaki ascii 2 C#

Dec 9th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System;
  2.  
  3. namespace wypisywanie_znakow_ascii
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             for (int i = 1; i < 256; i++)
  10.             {                
  11.                 Console.WriteLine(i + ". " + (char)i);
  12.             }
  13.             Console.ReadKey();
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement