摘要: 1、简述 private、 protected、 public、 internal 修饰符的访问权限 private :设置类或类的成员为私有,在类的内部才可以访问。有时要访问私有成员时,可通过get和set属性访问器读取或者修改。 protected :保护成员,该类内部和继承类(子类)中可以访问 阅读全文
posted @ 2015-09-30 10:32 peterYong 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 寻找数组中的第二大数 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplic 阅读全文
posted @ 2015-09-30 10:07 peterYong 阅读(558) 评论(0) 推荐(0) 编辑