From 16af781a94c90bf3d3b33e7082f2de66d27cea2f Mon Sep 17 00:00:00 2001 From: efrick Date: Tue, 29 Jun 2021 11:15:41 -0400 Subject: [PATCH] Start of C# rewrite. --- Sysinfo_console.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Sysinfo_console.cs diff --git a/Sysinfo_console.cs b/Sysinfo_console.cs new file mode 100644 index 0000000..97550ac --- /dev/null +++ b/Sysinfo_console.cs @@ -0,0 +1,13 @@ +using System; +using System.Text; +namespace Sysinfo_Console +{ + class Program + { + static void Main() + { + //ShowSystemInformation(); + Console.WriteLine("Hello"); + } + } +} \ No newline at end of file