laatzen/Common/CommonConsole/Program.cs
2024-09-26 15:57:56 +02:00

14 lines
352 B
C#

namespace CommonConsole
{
using System.Text;
public class Program
{
public static void Main()
{
var bytes = new byte[] { 0x43, 0x6F, 0x72, 0x64, 0x6F, 0x6E, 0x65, 0x6C, 0x20, 0x31, 0x2E, 0x35, 0x36, 0x00, 0x4E, 0xE4 };
System.Console.WriteLine(Encoding.ASCII.GetString(bytes));
}
}
}