2009年12月23日
摘要: 一、类的定义   class Study //类名 { string name; //字段 public void setName(string AName) //方法 { this.name = AName; } public string getName() //方法 { return this.name; } }二、传递参数  using System;using System.Coll... 阅读全文
posted @ 2009-12-23 14:54 kiny 阅读(299) 评论(0) 推荐(0)