标签:
ref参数在传递前必须初始化
out参数在方法返回前必须赋值
int a = 1;
int b;
TestRef(ref a);
TestOut(out b);
Console.Read();
}
static void TestRef(ref int value)
{
}
static void TestOut(out int value)
{
value = 13;
}
标签:
原文地址:http://www.cnblogs.com/xiaoyaxiaopingguo/p/5546755.html