摘要:
服务器端 using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using System.Text; using System.Th 阅读全文
摘要:
封装继承多态。面向对象:对象是事件的抽象,万物皆对象,在C#中面向是对一个类的抽象。 重写:在父子之间重写,方法名称、返回值类型、参数列表必须相同。 重载:函数名字相同,参数必须不同与返回值无关。 int m=2; int n=6; int max; int min; min = m < n ? m 阅读全文