摘要: C# API有这样的功能:View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ConsoleApplication5 7 { 8 abstract class Person 9 {10 private string _name;11 public string Name12 {13 get { return _name; ... 阅读全文
posted @ 2013-04-24 16:07 若愚Shawn 阅读(266) 评论(0) 推荐(0) 编辑