摘要:
21)类的属性,又称智能字段 using System;class A{ private int x; public int y; private string s; public int X { //get { return this.x; } //被读 set { this.x = value; } //被写(将get注释掉的话,就成... 阅读全文
posted @ 2006-11-16 11:24
骑人的驴
阅读(480)
评论(0)
推荐(0)