编程学习网为您整理以下代码实例,主要实现:C#按输出传递参数,希望可以帮到各位朋友。
using System;
namespace CalculatorApplication {
class NumberManipulator {
public voID getValue(out int x ) {
int temp = 5;
x = temp;
}
static voID Main(string[] args) {
NumberManipulator n = new NumberManipulator();
/* local variable deFinition */
int a = 100;
Console.Writeline("Before method call, value of a : {0}", a);
/* calling a function to get the value */
n.getValue(out a);
Console.Writeline("After method call, value of a : {0}", a);
Console.Readline();
}
}
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!