I have learned quite a bit browsing through Hidden Features of C# and was surprised when I couldn't find something similar for VB.NET.
So what are some of its hidden or lesser known features?
|
73
|
I have learned quite a bit browsing through Hidden Features of C# and was surprised when I couldn't find something similar for VB.NET. So what are some of its hidden or lesser known features? |
||||||||||||||||||||
|
|
|
The Exception When Clause is largely unknown. Consider this:
|
||||||||
|
|
|
Custom
|
|
|
TypedefsVB knows a primitive kind of
This is more useful when used in conjunction with generic types:
|
||||||||
|
|
|
Oh! and don't forget XML Literals.
|
||
|
|
Object initialization is in there too!
|
||||
|
|
|
|
|
Tell VS 2005 that. Not all of us get to work with the latest and greatest. – Sam Erwin Sep 19 '08 at 18:31 | ||
|
@Slough, nonsense. This method is 100% type safe and it returns an object of the same type as its (second and third) argument. Additionally, there must be a widening conversion between the arguments, else there will be a compile error because the types don't match. – Konrad Rudolph Nov 27 '08 at 17:53 |
|
|
|
|
DirectCast() and TryCast() are invaluable when used correctly as a pair. DirectCast() should be used if the object being cast is always expected to be the target type (if it isn't you'll get an error, a good thing since it's an unexpected situation). TryCast() should be used if the object being cast could be of the target type, or of several target types. Using One or the other exclusively will either lead to extra overhead (if typeof x is y then directcast(x, y) is inefficient) or to avoiding valid errors (using TryCast() for cases where the object should always be the target type) – Yoooder May 5 at 14:28 |
|
|
This is a nice one. The Select Case statement within VB.Net is very powerful. Sure there is the standard
But there is more... You can do ranges:
|
||||
|
|
|
Have you noticed the Like comparison operator?
More from MSDN
|
|||
|
|
One major time saver I use all the time is the With keyword:
I just don't like typing more than I have to! |
||||||||||||
|
|
|
(EDIT: Learn more here: Should I always use the AndAlso and OrElse operators?) |
|||
|
|
Custom EventsThough seldom useful, event handling can be heavily customized:
This can then be tested in the following fashion:
|
|||
|
|
I really like the "My" Namespace which was introduced in Visual Basic 2005. My is a shortcut to several groups of information and functionality. It provides quick and intuitive access to the following types of information:
|
||||
|
|
|
The best and easy CSV parser:
By adding a reference to Microsoft.VisualBasic, this can be used in any other .Net language, e.g. C# |
||||
|
|
|
Static members in methods. For example:
In the above function, the pattern regular expression will only ever be created once no matter how many times the function is called. Another use is to keep an instance of "random" around:
Also, this isn't the same as simply declaring it as a Shared member of the class; items declared this way are guaranteed to be thread-safe as well. It doesn't matter in this scenario since the expression will never change, but there are others where it might. |
||||||||
|
|
|
I just found an article talking about the "!" operator, also know as the "dictionary lookup operator". Here's an excerpt from the article at: http://panopticoncentral.net/articles/902.aspx
|
||||||||||||||||
|
|
|
Passing parameters by name and, so reordering them
Usage:
Can also be called using the ":=" parameter specification in any order:
|
|||
|
|
This is built-in, and a definite advantage over C#. The ability to implement an interface Method without having to use the same name. Such as:
|
||
|
|
You can have 2 lines of code in just one line. hence:
|
|||
|
|
Import aliases are also largely unknown:
|
||
|
|
The Using statement is new as of VB 8, C# had it from the start. It calls dispose automagically for you. E.g.
|
||||
|
|
|
If you need a variable name to match that of a keyword, enclose it with brackets. Not nec. the best practice though ;-) e.g.
|
|||
|
|
Consider the following event declaration
In C#, you can check for event subscribers by using the following syntax:
However, the VB.NET compiler does not support this. It actually creates a hidden private member field which is not visible in IntelliSense:
More Information: http://jelle.druyts.net/2003/05/09/BehindTheScenesOfEventsInVBNET.aspx http://blogs.msdn.com/vbteam/archive/2009/09/25/testing-events-for-nothing-null-doug-rothaus.aspx |
||||||||
|
|
|
Optional Parameters Optionals are so much easier than creating a new overloads, such as :
|
|||
|
|
Title Case in VB.Net can be achieved by an old VB6 fxn:
|
||||
|
|
|
Properties with parameters I have been doing some C# programming, and discovered a feature that was missing that VB.Net had, but was not mentioned here. An example of how to do this (as well as the c# limitation) can be seen at: http://stackoverflow.com/questions/236530/using-the-typical-get-set-properties-in-c-with-parameters I have excerpted the code from that answer:
|
|||
|
|
|
|
In vb there is a different between these operators: / is double \ is integer ignoring the division
|
|||
|
|
You can have an If in one line.
|
|||
|
|
|
|
Stack/group multiple using statements together:
To be fair, you can do it in C#, too. But a lot of people don't know about this in either language. |
|||
|
|
|
||