August 2010
Intermediate to advanced
1224 pages
34h 17m
English
Visual Basic now enables you to omit unused and unwanted arguments from your event handlers. The thought is that this makes for code that reads more cleanly. In addition, it enables you to assign methods directly to event handlers without trying to determine the proper event signature.
As an example, suppose you had the following code to respond to a button click event:

You could remove the arguments from this code (or never put them in). Your new code functions the same and looks as follows: