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?
|
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? | |||||||||||||||||||||
feedback
|
|
The Consider this:
| |||||||||||||||||
feedback
|
Custom
|
|
|||
|
...although I just noticed it doesn't work for generics with a Type constraint (small sad face). So SomeMethod(Of T as Rule)() won't show the dialog – STW Jul 17 '09 at 19:26 |
TypedefsVB knows a primitive kind of
This is more useful when used in conjunction with generic types:
| |||||||||||||
feedback
|
|
Have you noticed the Like comparison operator?
More from MSDN
| |||||
feedback
|
|
Oh! and don't forget XML Literals.
| |||||||||
feedback
|
|
Object initialization is in there too!
| |||||||||||||||||
feedback
|
|
|
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) – STW May 5 '09 at 14:28 |
|
|
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 |
||
|
|||
|
@Br.Bill In fact, it’s completely equivalent to C and Perl’s :? operator, it’s not just a simplified version. – Konrad Rudolph Mar 12 '11 at 8:55 |
|
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:
And even more... You can (although may not be a good idea) do boolean checks on multiple variables:
| |||||||||||||
feedback
|
|
One major time saver I use all the time is the With keyword:
I just don't like typing more than I have to! | |||||||||||||||||||||
feedback
|
|
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# | |||||
feedback
|
(EDIT: Learn more here: Should I always use the AndAlso and OrElse operators?) | ||||
|
feedback
|
|
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. | |||||||||||||
feedback
|
|
In vb there is a different between these operators:
| |||||
feedback
|
|
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:
| |||||
feedback
|
Custom EventsThough seldom useful, event handling can be heavily customized:
This can then be tested in the following fashion:
| |||||
feedback
|
|
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
| |||||||||||||||||||||
feedback
|
|
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:
| |||||||||||||||||
feedback
|
|
Passing parameters by name and, so reordering them
Usage:
Can also be called using the ":=" parameter specification in any order:
| |||||||||
feedback
|
|
Forcing ByVal In VB, if you wrap your arguments in an extra set of parentheses you can override the ByRef declaration of the method and turn it into a ByVal. For instance, the following code produces 4, 5, 5 instead of 4,5,6
See Argument Not Being Modified by Procedure Call - Underlying Variable | |||||||||
feedback
|
|
The Using statement is new as of VB 8, C# had it from the start. It calls dispose automagically for you. E.g.
| |||||
feedback
|
|
Import aliases are also largely unknown:
| |||||||||
feedback
|
|
If you need a variable name to match that of a keyword, enclose it with brackets. Not nec. the best practice though - but it can be used wisely. e.g.
e.g. Example from comments(@Pondidum):
| |||||||||||||
feedback
|
|
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 | |||||||||
feedback
|
|
There are a couple of answers about XML Literals, but not about this specific case: You can use XML Literals to enclose string literals that would otherwise need to be escaped. String literals that contain double-quotes, for instance. Instead of this:
You can do this:
This is especially useful if you're testing a literal for CSV parsing:
(You don't have to use the | |||||
feedback
|
|
DateTime can be initialized by surrounding your date with #
You can also use type inference along with this syntax
That's a lot nicer than using the constructor
| |||||||||
feedback
|
|
You can have 2 lines of code in just one line. hence:
| ||||
|
feedback
|
|
Optional Parameters Optionals are so much easier than creating a new overloads, such as :
| |||||||||
feedback
|
|
Title Case in VB.Net can be achieved by an old VB6 fxn:
| |||||
feedback
|
|
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:
| ||||
|
feedback
|