c#的参数传递有三种方式:值传递,和c一样,引用传递,类似与c++,但形式不一样输出参数,这种方式可以返回多个值,这种有点像c中的指针传递,但其实不太一样.值传递不细说,c中已经很详细了引用传递实例如下:需要使用ref关键字 using System; namespace CalculatorApplication { class NumberManipulator { //引用传递必须使用ref public void swap(ref int x, ref int y) { int temp