When verbally talking about methods, I\'m never sure whether to use the word argument or parameter or something else. Either way the other people know what
A parameter is a variable in a method definition. When a method is called, the arguments are the data you pass into the method's parameters.
public void MyMethod(string myParam) { } ... string myArg1 = "this is my argument"; myClass.MyMethod(myArg1);