public void Foo(String parameter) { }
...
String argument = "This is an argument";
myClass.Foo(argument);
Parameter is variable in the declaration of method.
Argument is the actual value of this variable that gets passed to method.
public void Foo(String parameter) { }
...
String argument = "This is an argument";
myClass.Foo(argument);
Parameter is variable in the declaration of method.
Argument is the actual value of this variable that gets passed to method.