using System;//引入核心命名空间,是一切类的基础
class Namedwelcom{
//创建了一个类,类的名字叫做“Namedwelcom”
public static void Main(string args[]){
//static修饰的方法只能调用方法外的static类型变量,这个你先注意下
Console.WriteLine("Hello,{0}",args[0]);//输出“Hello”。
{0}是用来对输出字符串进行格式化的,
在字符串中用{}括起一个索引值,(从0开始的整型数值)表示这个位置上的字符是后接参数的值.
这一句中字符串"hello , {0}"后以逗号分隔,紧随其后的就是参数值。
Console.WriteLine("Welcome to the C# Station Tutorial!"]);//输出Welcome to the C# Station Tutorial!
}
void main之前是废话
定义数组
窗体显示hello
换行
窗体显示welcome xxxxxxxxxxxx
结束
using System; //引用命名空间
class NamedWelcom { //类名
public static void Main(string args[]){ //入口函数
Console.WriteLine("Hello,{0}",args[0]); //控制台打印Hello,【参数】
Console.WriteLine("Welcome to the C# Station Tutorial!"]); //打印字符串
}
}