public static void Main()
Console.WriteLine("Hello World");
ParamsExample p = new ParamsExample();
p.PassParams("1", "2", "3");
public class ParamsExample
private int[] _param = new int[10];
public int this[int param]
public void PassParams(params string[] a)
public void PrintIndexerItems()