VB.NET method overloading

Define method overloading.

- It allows several methods with the same name but different signatures.
- It is useful where several similar functionalities are required.
- The class can perform the actions provided by the method.
- If you overload a method, the action can be altered according to the parameters.
VB.NET - Describe an abstract class
VB.NET - Describe an abstract class - An abstract class is a class that cannot be instantiated but must be inherited. ......
VB.NET - Describe Break mode
VB.NET - Describe Break mode - Break mode allows reading code line-by-line.......
VB.NET Watch window
VB.NET Watch window - Watch window is used to watch the values of application variables in Break mode......
Post your comment