摘要: // struct Fenshu // { // public ArrayList al; // } // //结构体 // struct Student // { // public int no; // public string name; // public string sex; // p 阅读全文
posted @ 2016-08-03 16:59 王站住 阅读(189) 评论(0) 推荐(0) 编辑
摘要: //使用 out传值的时候仅仅是将变量名(箱子)拿过来 //并不会管之前是什么值 //函数体结束之前必须对该out的参数进行赋值,否则报错(不好意思还回去) //out传值,可以进行多个值的传回 public void Jia(int b,out int c) { //c += 3;//c=c+3; 阅读全文
posted @ 2016-08-03 16:55 王站住 阅读(110) 评论(0) 推荐(0) 编辑