diff --git a/csharp/helloworld.cs b/csharp/helloworld.cs new file mode 100644 index 0000000..6bcf54b --- /dev/null +++ b/csharp/helloworld.cs @@ -0,0 +1,10 @@ +namespace HelloWorld +{ + class Hello + { + static void Main(string[] args) + { + System.Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file