All pastes #2106420 Raw Edit

Mine

public text v1 · immutable
#2106420 ·published 2012-01-26 13:15 UTC
rendered paste body
/* ASCII KODLARI

* Bu program Hüseyin Çakanlı tarafından 26.01.2012 tarihinde Yazıldı.

* C# Express ile Test Edilmiştir.

*/

using System;


namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int j = 0;
            for (int i = 0; i < 256; i++)
            {
                j++;
                if (j > 6)
                {
                    Console.WriteLine(""); j = 0;

                }
                Console.Write("{0} - {1}      ", i,Convert.ToChar(Convert.ToInt32(i)));

            }
                Console.ReadLine();
        }
    }
}