1.值类型: static void Main(string[] args) { ; ; NumVal(a, b); Console.WriteLine("a={0},b={1}", a, b); //输出结果为:a=5,b=3 Console.ReadKey(); } static void NumVal(int a, int b) { a = a + b; b = a - b; } 代码 值类型被当做参数时,传递的是值的副本,所以在下面的方法中修改参数的值并不能影响函数调用中指定的…
using System; namespace ParamsProgram { class TestParams { public static void Main(string[] args)//static void Main(string[] args) { int m ;//= 10; ]; ; i < arr.Length; i++) { arr[i] = i; } ParamsProgram.TestParams t = new TestParams(); //t.check(5,6…