标签: c# function call
如何在调用函数中保存变量的值作为参数来调用函数?
答案 0 :(得分:2)
使用ref关键字,这将保留您的变量。
private void method() { int a = 10; function(ref a); } private void function(ref int a) { //do work and change value of a }