用C#写一个控制台程序包含3中参数(值,引用和输出)

日期:2017-10-07 04:51:46 人气:1

用C#写一个控制台程序包含3中参数(值,引用和输出)

void Main(){ int a,b,c; a=b=c=0; Func(a,ref b,out c); Console.WriteLine("{0} {1} {2}",a,b,c);}static void Func(int a, ref int b, out int c) { a=10; b=20; c=30;}
    A+
热门评论