May 2010
Intermediate to advanced
1272 pages
61h 18m
English
Methods can receive parameters and can then work with data provided by parameters. In the .NET terminology, parameters are also known as arguments. We mainly use the word arguments because it’s the one that you typically find within the documentation and about topics related to .NET development. The following code shows a simple sample of a method definition receiving an argument and subsequent invocation of that method passing an argument:

Arguments can be passed by value and by reference. You pass arguments by value adding the ByVal keyword, whereas you pass them by reference specifying the ByRef keyword. If ...
Read now
Unlock full access