using System; namespace task.lmcjl.com { class Rectangle { // 成员变量 double length; double width; // 成员函数 public void Acceptdetails() { length = 4.5; width = 3.5; } public double GetArea() { return length * width; } public void Display() { Console.WriteLine("Length: {0}", length); Console.WriteLine("Width: {0}", width); Console.WriteLine("Area: {0}", GetArea()); } } class ExecuteRectangle { static void Main(string[] args) { Rectangle r = new Rectangle(); r.Acceptdetails(); r.Display(); Console.ReadLine(); } } }编译并执行上面的代码,执行结果如下:
Length: 4.5
Width: 3.5
Area: 15.75
using System;
)可以称为一条 using 语句,几乎所有的 C# 程序都是以 using 语句开头的。using 语句主要用来引入程序中的命名空间,而且一个程序中可以包含多个 using 语句。 /*
开头,并以 */
结尾,/*
和 */
之间的所有内容都属于注释内容,如下所示:
/* C# 教程——多行注释
C语言中文网
http://task.lmcjl.com/ */
//
符号开头,需要注意的是单行注释没有结束符,而且只对其所在的行有效,//
符号之后的所有内容都属于注释内容,如下所示://单行注释
A-Z、a-z
开头,后面可以跟英文字母A-Z、a-z
、数字0-9
或下划线_
; ? - + ! @ # % ^ & * ( ) [ ] { } . ; : " ' / \
,但是可以使用下划线 _
;本文链接:http://task.lmcjl.com/news/16216.html