public void show(int val)
Console.WriteLine("value inside the show function" +val);
static void main(string[] args)
Program program = new Program();
Console.Write("value before calling the function" +val);
Console.WriteLine("value after calling the function"+val);