摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 泛型集合 { class Program { static void Main(string[] args) { //创建泛型集合对... 阅读全文
摘要:
class FangFa { /// /// 加法运算 /// /// 第一个数 /// 第二个数 /// public int JiaFa(int a, int b) { return a + b; } ... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 接口 { class Program { static void Main(string[] args) { //接口:就是一个规... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 多态 { class Program { static void Main(string[] args) { /* ... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 抽象类 { class Program { static void Main(string[] args) { //狗狗会叫,猫咪... 阅读全文
摘要:
namespace 多态 { public class Person { private string _name; public string Name { get { return _name; } set { _name = value; } } public Person(string na 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 继承 { public class Person { //字段 private string _name; private int _ag... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 封装 { public class Person { //字段:存储数据 string _name; //类中的成员,如果不加访问修饰符,默认priv... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 面向对象 { //创建person类 public class person { //Fields:字段 private string _... 阅读全文
摘要:
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace 复习CS_冒泡排序 { class Program { /// /// 题目: ... 阅读全文