标签:win nbsp xheditor efault namespace mode line hello read
C# to say hello world ....
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
标签:win nbsp xheditor efault namespace mode line hello read
原文地址:https://www.cnblogs.com/nichoxxc/p/9160530.html