internal void test(int x,int y)
Console.WriteLine("Formal parameters :{0},{1}",x,y);
internal void test1(ref int x,ref int y)
Console.WriteLine("Formal parameters :{0},{1}",x,y);
internal void test2(int x,int y,out int z)
Console.WriteLine("Formal Parameters : {0},{1},{2}",x,y,z);
internal void test3(params int[] now)
for(int i=0;i<now.Length;i++)
public static void Main()
Console.WriteLine("Hello World");
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Actual Paramters:{0},{1}",a,b);
Console.WriteLine("Actual Paramters:{0},{1}",a,b);
Console.WriteLine("Actual Paramters:{0},{1},{2}",a,b,d);