摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 接口 { class Program { static void Main(string[] args) { //接口:就是一个规... 阅读全文
posted @ 2016-06-19 22:11 庚xiao午 阅读(108) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 多态 { class Program { static void Main(string[] args) { /* ... 阅读全文
posted @ 2016-06-19 17:15 庚xiao午 阅读(289) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 抽象类 { class Program { static void Main(string[] args) { //狗狗会叫,猫咪... 阅读全文
posted @ 2016-06-19 17:06 庚xiao午 阅读(164) 评论(0) 推荐(0) 编辑
摘要: namespace 多态 { public class Person { private string _name; public string Name { get { return _name; } set { _name = value; } } public Person(string na 阅读全文
posted @ 2016-06-19 16:57 庚xiao午 阅读(136) 评论(0) 推荐(0) 编辑