Mine
public text v1 · immutable/* 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();
}
}
}