ruby: handle singleton method including ?!= in its name(sf.bug:364)
[geany-mirror.git] / tests / ctags / keyword_params.cs
blob1707cedf83c008b57fc776fb7a59e3f13a19415e
1 // cs_params.cs
2 using System;
3 public class MyClass
6 public static void UseParams(params int[] list)
8 for ( int i = 0 ; i < list.Length ; i++ )
9 Console.WriteLine(list[i]);
10 Console.WriteLine();
13 public static void UseParams2(params object[] list)
15 for ( int i = 0 ; i < list.Length ; i++ )
16 Console.WriteLine((object)list[i]);
17 Console.WriteLine();
20 public static void Main()
22 UseParams(1, 2, 3);
23 UseParams2(1, 'a', "test");
25 int[] myarray = new int[3] {10,11,12};
26 UseParams(myarray);