摘要: 1:C#Contact public class Contact { private int _Id; private string _Name; public int id { get { return _Id; } set { _Id = value; } } public string name { get { return _Name; } set { _Name = value; } ... 阅读全文
posted @ 2013-07-01 15:50 李占卫 阅读(3715) 评论(0) 推荐(0) 编辑