标签:int 函数 out 表示 c# ref style return public
public/private/protectd -三种修饰符号
public static void a()
{
console.writeline("");
} --无参数,无返回值
public static string a()
{
return "b"
} --无参数,有返回值
public static void a(int x,int y)
{
console.writeline(x+y);
} --有参数 参数内 可以填 ref ,表示可进可出;也可填 out,只进不出
标签:int 函数 out 表示 c# ref style return public
原文地址:http://www.cnblogs.com/m110/p/7787714.html