C#中方法参数的四种类型,C#中方法参数的四种类型
【 tulaoshi.com - ASP.NET 】
C#中方法的参数有四种类型:using System;
class Test
{
static void F(params int[] args)
{
Console.WriteLine("Array contains {0} elements:",args.Length);
foreach(int i in args)
Console.Write("{0}",i);
Console.WriteLine();
}
public static void Main()
{
int [] a = {1,2,3};
F(a);
F(10,20,30,40);
F();
}
}
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)来源:http://www.tulaoshi.com/n/20160129/1490535.html
看过《C#中方法参数的四种类型》的人还看了以下文章 更多>>