A method can declare any number of parameters (in this example, i, s and o are the parameters):
static void DoSomething(int i, string s, object o) {
Console.WriteLine(String.Format("i={0}, s={1}, o={2}", i, s, o));
}
Parameters can be used to pass values into a method, so that th...