using System;
public class Program
{
public static void MyMethod(int x) //create a new method . The "int x" creates a parmeter called "x"
Console.WriteLine(x);
}
public static void Main()// place to run code
MyMethod(42); // calls the method . 42 is an argument
//will output :42