摘要: using System;using System.Collections;public class Person{ public Person(string fName, string lName) { this.firstName = fName; this.lastName = lName; } public string firstName; public string lastName;... 阅读全文
posted @ 2010-04-12 12:00 greencolor 阅读(281) 评论(0) 推荐(0) 编辑