August 2015
Beginner
1075 pages
40h 42m
English
Visual Basic added a feature in 2010 for implicit line continuation. This enables you to drop the need for the underscore (_) commonly used to indicate line continuation. For example, the following code shows a valid method signature without the need for the underscore required for line continuation.
Private Sub OnEmployeeUpdate(ByVal sender As Object, ByVal e As EmployeeUpdatedEventArgs)
There are many places in Visual Basic where you can eliminate the underscore and instead allow the compiler to use implicit continuation. These include after commas, after an open parenthesis, after an open curly brace, after concatenation, and more.
Tip
Visual Basic 14 (for ...
Read now
Unlock full access