C#初学者求解我用的是vs2008,下面是程序using System;class Hello{publiuc static void main(){.ConsolewriteLine("Hello,world");}}这段因该是很多人学的第一个程序,我好多年前也有学过C跟Qbasic,但是这段我在编译的时候提示出错了,下面是出错的提示: c# [解决办法]这个是控制台应用程序吧
using System;namespace Hello{ class Program { public static void Main() { Console.WriteLine("Hello,world"); } }}