Print ASCII Character December 31, 2014 Console.WriteLine("ASCII Character"); for (int c = 1; c <= 256; c++) { Console.WriteLine(c + ": " + Convert.ToChar(c) + "\n"); Console.ReadLine(); } Output: Share Get link Facebook X Pinterest Email Other Apps Labels C# Share Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment