C# C# While 和 Do While using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 1,750 发表评论 阅读全文
C# C# switch-case 执行过程:程序执行到switch处,首先将括号中变量或者表达式的值计算出来, 然后拿着这个值依次跟每个case后面所带的值进行匹配,一旦匹配成功,则执行 该case所带的代码,执行完成后,遇到brea... 12月15日 阅读 1,917 发表评论 阅读全文
C# C# 部分类 密封类 using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 1,575 发表评论 阅读全文
C# C# 序列化和反序列化 using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 1,694 发表评论 阅读全文
C# C# 值类型和引用类型 using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 1,713 发表评论 阅读全文
C# C# 类的访问修饰符 public :公开的公共的 private:私有的,只能在当前类的内部访问 protected:受保护的,只能在当前类的内部以及该类的子类中访问。 internal:只能在当前项目中访问。在同一个项... 12月15日 阅读 1,725 发表评论 阅读全文
C# C# 多态 虚方法 抽象 接口 using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 1,720 发表评论 阅读全文
C# C# StreamReader和StreamWriter using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 1,865 发表评论 阅读全文
C# C# FileStream类 using System; using System.Collections.Generic; using System.IO... 12月15日 阅读 1,881 发表评论 阅读全文
C# C# Dictionary字典集合 using System; using System.Collections.Generic; using System.Li... 12月15日 阅读 1,888 发表评论 阅读全文