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? |
||||||||||||||||||||
|
|
|
Passing parameters by name and, so reordering them
Usage:
Can also be called using the ":=" parameter specification in any order:
|
|||
|
|
Optional Parameters Optionals are so much easier than creating a new overloads, such as :
|
|||
|
|
may be this link should help http://blogs.msdn.com/vbteam/archive/2007/11/20/hidden-gems-in-visual-basic-2008-amanda-silver.aspx |
||
|
|
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:
|
||||
|
|
|
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. |
||||||||
|
|
|
Custom EventsThough seldom useful, event handling can be heavily customized:
This can then be tested in the following fashion:
|
|||
|
|
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 |
||||||||
|
|
|
|
|
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 |
|
|
Title Case in VB.Net can be achieved by an old VB6 fxn:
|
||||
|
|
|
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):
|
||||||||||||
|
|
|
You can use REM to comment out a line instead of ' . Not super useful, but helps important comments standout w/o using "!!!!!!!" or whatever. |
||||||||
|
|
|
TypedefsVB knows a primitive kind of
This is more useful when used in conjunction with generic types:
|
||||||||
|
|
|
Oh! and don't forget XML Literals.
|
||||
|
|
|
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:
|
||
|
|
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. |
||
|
|
Aliassing namespaces
Although not unique to VB.Net it is often forgotten when running into namespace conflicts. |
||
|
|
The Using statement is new as of VB 8, C# had it from the start. It calls dispose automagically for you. E.g.
|
||||
|
|
|
Custom
|
|
|
Import aliases are also largely unknown:
|
||||||||||||
|
|
|
|
||||||||||||
|
|
|
Object initialization is in there too!
|
||||||||
|
|
|
The Exception When Clause is largely unknown. Consider this:
|
||||||||
|
|
|
|
|
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 |
|
|
|
||
|
|
I don't know how hidden you'd call it, but the Iif([expression],[value if true],[value if false]) As Object function could count. It's very similar, in a way, to the ? : (ternary) operator in a lot of C-like languages. However, it's important to note that it does evaluate all of the parameters, so it's important to not pass in anything that may cause an exception (unless you want it to) or anything that may cause unintended side-effects. |
||||
|
|
|
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?) |
|||