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?
|
76
|
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? |
||||||||||||||||||||
|
|
|
You can have 2 lines of code in just one line. hence:
|
|||
|
|
You can have an If in one line.
|
|||
|
|
VB also offers the OnError statement. But it's not much of use these days.
|
|||
|
|
Have you noticed the Like comparison operator?
More from MSDN
|
||||
|
|
|
Someday Basic users didn't introduce any variable. They introduced them just by using them. VB's Option Explicit was introduced just to make sure you wouldn't introduce any variable mistakenly by bad typing. You can always turn it to Off, experience the days we worked with Basic. |
|||
|
|
|
|
In VB8 and the former vesions, if you didn't specify any type for the variable you introduce, the Object type was automaticly detected. In VB9 (2008), the |
||||
|
|
|
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
|
||||||||||||||||
|
|
|
MyClass keyword provides a way to refer to the class instance members as originally implemented, ignoring any derived class overrides. |
|||
|
|
|
|
Select Case in place of multiple If/ElseIf/Else statements. Assume simple geometry objects in this example:
|
|||
|
|
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. |
|||
|
|
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# |
||||
|
|
|
Similar to Parsa's answer, the like operator has lots of things it can match on over and above simple wildcards. I nearly fell of my chair when reading the MSDN doco on it :-) |
|||
|
|
|
|
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
|
|||
|
|
In vb there is a different between these operators: / is double \ is integer ignoring the division
|
|||
|
|
If you never know about the following you really won't believe it's true: (It's called XML literals)
Take a look at XML Literals Tips/Tricks by Beth Massi. |
|||
|
|
|
|||
|
|
|
|
Unlike in C#, in VB you can rely on the default values for non-nullable items:
|
|||
|
|
|
|
What is the result? two message boxes!!!! This happens cuz the IIf function evaluates both parameters when reaching the function. VB has a new If operator (just like C# ?: operator):
Will show only second msgbox. in general I would recommend replacing all the IIFs in you vb code, unless you wanted it to evealueate both items:
you can be sure that both values were loaded. |
|||
|
|
|
|
You can use reserved keyword for properties and variable names if you surround the name with [ and ]
|
||||
|
|
|
In this snippet you have 2 (maybe more?) things that you could never do in C#:
Also, in C# you cannot use expected functionality on object - in C# you can dream about it (now they made the dynamic keyword, but it's far away from VB). In C#, if you will write (new object()).Enabled you will get an error that type object doesn't have a method 'Enabled'. Now, I am not the one who will recommend you if this is safe or not, the info is provided AS IS, do on your own, bus still, sometimes (like when working with COM objects) this is such a good thing. I personally always write (sender As Button) when the expected value is surely a button. Actually moreover: take this example:
|
||||
|
|
|
Differences between ByVal and ByRef keywords:
|
|||
|
|
|
|
One of the features I found really useful and helped to solve many bugs is explicitly passing arguments to functions, especially when using optional. Here is an example:
then you can call it like this:
This is much cleaner and bug free then calling the function like this
|
|||
|
|
|
|
The Nothing keyword can mean default(T) or null, depending on the context. You can exploit this to make a very interesting method:
|
|||
|
|
Refined Error Handling using WhenNotice the use of
Recently viewed in VbRad |
|||
|
|
|
|
When declaring an array in vb.net always use the "0 to xx" syntax.
It makes it very clear about the span of the array. Compare it with the equivalent
Even if you know that the second example consists of 10 elements, it just doesn't feel obvious. And I can't remember the number of times when I have seen code from a programmer who wanted the above but instead wrote
This is of course completely wrong. As b(10) creates an array of 11 bytes. And it can easily cause bugs as it looks correct to anyone who doesn't know what to look for. The "0 to xx" syntax also works with the below
By using the full syntax you will also demonstrate to anyone who reads your code in the future that you knew what you were doing. |
|||
|
|
Here's a funny one that I haven't seen; I know it works in VS 2008, at least: If you accidentally end your VB line with a semicolon, because you've been doing too much C#, the semicolon is automatically removed. It's actually impossible (again, in VS 2008 at least) to accidentally end a VB line with a semicolon. Try it! (It's not perfect; if you type the semicolon halfway through your final class name, it won't autocomplete the class name.) |
|||
|
|