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? |
||||
|
|
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
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. |
|||||
|
|
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
|
||||
|
|
|
|||
|
|
Refined Error Handling using WhenNotice the use of
Recently viewed in VbRad |
||||
|
|
|
You can have an If in one line.
|
|||||||||||||||||
|
|
If you never knew about the following you really won't believe it's true, this is really something that C# lacks big time: (It's called XML literals)
Take a look at XML Literals Tips/Tricks by Beth Massi. |
|||||
|
|
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.) |
||||
|
|
|
Unlike
|
||||
|
|
|
Select Case in place of multiple If/ElseIf/Else statements. Assume simple geometry objects in this example:
|
|||||||||||||||||||||
|
|
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 |
|||||||||||||
|
|
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 :-) |
||||
|
|
|
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. |
|||||||||
|
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 ]
|
|||||
|
|
It is also important to remember that VB.NET projects, by default, have a root namespace that is part of the project’s properties. By default this root namespace will have the same name as the project. When using the Namespace block structure, Names are actually appended to that root namespace. For example: if the project is named MyProject, then we could declare a variable as:
To change the root namespace, use the Project -> Properties menu option. The root namespace can be cleared as well, meaning that all Namespace blocks become the root level for the code they contain. |
|||
|
|
|
may be this link should help http://blogs.msdn.com/vbteam/archive/2007/11/20/hidden-gems-in-visual-basic-2008-amanda-silver.aspx |
|||
|
|
|
MyClass keyword provides a way to refer to the class instance members as originally implemented, ignoring any derived class overrides. |
||||
|
|
|
The Nothing keyword can mean default(T) or null, depending on the context. You can exploit this to make a very interesting method:
|
|||||
|
|
Unlike in C#, in VB you can rely on the default values for non-nullable items:
Whereas in C#, this will be a compiler error:
|
|||||||||
|
|
Aliassing namespaces
Although not unique to VB.Net it is often forgotten when running into namespace conflicts. |
|||
|
|
|
VB also offers the OnError statement. But it's not much of use these days.
|
|||||
|
|
You can use REM to comment out a line instead of ' . Not super useful, but helps important comments standout w/o using "!!!!!!!" or whatever. |
|||||||||||||
|
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:
|
|||||||||||||
|
|
Nullable Dates! This is particularly useful in cases where you have data going in / coming out of a database (in this case, MSSQL Server). I have two procedures to give me a SmallDateTime parameter, populated with a value. One of them takes a plain old date and tests to see if there's any value in it, assigning a default date. The other version accepts a
|
||||
|
|
|
It's not possible to Explicitly implement interface members in VB, but it's possible to implement them with a different name.
|
|||||||||
|
|
I don't know how hidden you'd call it, but the It's very similar, in a way, to the Usage:
|
|||||||||||||||||
|
|
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. |
||||
|
|
|
Differences between ByVal and ByRef keywords:
|
||||
|
|
|
I used to be very fond of optional function parameters, but I use them less now that I have to go back and forth between C# and VB a lot. When will C# support them? C++ and even C had them (of a sort)! |
|||||||||||||||||
|
|
Documentation of code
|
||||
|
|