May 2010
Intermediate to advanced
1272 pages
61h 18m
English
Methods are the .NET representation of what in other programming environments you define as functions and procedures. A method can be a member of classes, structures, and modules. Methods that return a value are represented by Function..End Function blocks, such as the following:
![]()
Methods that do not return a value are represented by Sub..End Sub blocks, such as the following:
![]()
Methods can receive parameters that can be processed within code blocks. Such parameters are called, using .NET terminology, arguments. The following code block shows ...
Read now
Unlock full access