使用 out传值的时候仅仅是将变量名(箱子)拿过来,并不会管之前是什么值函数体结束之前必须对该out的参数进行赋值,否则报错(不好意思还回去)out传值,可以进行多个值的传回 public void Jia(int b,out int c) {c = b + 10; } Console.Write("请输入a=");int a = int.Parse(Console.ReadLine());int c = 4;Program hanshu = new Program();hanshu.…
通过:xmlhttp.onreadystatechange= function(){FuncName(param)};orxmlhttp.onreadystatechange= new Function("FuncName(param)");就可以了. 例如:m=document.getElementsByName("text8");v=m[i];XMLHttpReq.onreadystatechange=function(){proce(v)};---------…