Created
February 23, 2023 07:15
-
-
Save jskeet/d386ea0f2872490861863d05ea3a4c14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
public class Program | |
{ | |
static void Main() | |
{ | |
var builder = new StringBuilder(); | |
for (int i = 0; i < 256; i++) | |
{ | |
byte b = (byte) i; | |
char c = (char) b; | |
builder.Append(c); | |
} | |
Console.WriteLine(builder.ToString()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment