2009年6月17日 星期三

C# 4 選擇性引數(Optional Arguments)

宣告方法的引數,給個預設值就行了,例如:

1 class Program {

2 static void Main(string[] args) {

3 Console.WriteLine(Add(10, 20));

4 Console.WriteLine(Add(10, 20,30));

5 }

6 static int Add(int x, int y, int z = 0) {

7 return x + y + z;

8 }

9 }

沒有留言:

總網頁瀏覽量