vote up 58 vote down star
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?

flag
1  
I find it strange that C# gets so much more attention than VB.NET, yet VB.NET is the more powerful language! Curly brackets have a lot to answer for :) – gbjbaanb Sep 19 '08 at 14:23
9  
Now, now. Let's not reduce this to a pointless VB vs. C# debate. The point of this questions is to help folks learn about VB.Net, not to bash C#. – Sean Gough Sep 19 '08 at 15:06
4  
The semi-colon/long lines is one of things I miss in VB.Net. I wouldn't want them required for every line though. It would be nice if you could start a line with ';', and that indicates to the compiler that line isn't over until it sees another ';' – Joel Coehoorn Sep 19 '08 at 16:14
3  
@Joel, I will grant your wish! Hold down the shift key while you type that semicolon, and it will be a colon! (Apologies if you have a non-UK keyboard layout.) This will allow you to type another statement on the same line in VB.NET. And, as you requested, it is not required for every line! – MarkJ Jun 9 at 14:30
4  
... or for long lines, just type an underscore at the end of every line until the last one. Or wait for VB10 where we are promised implicit continuation for long lines. – MarkJ Jun 15 at 19:03
show 5 more comments

56 Answers

prev 1 2
vote up 3 vote down

Select Case in place of multiple If/ElseIf/Else statements.

Assume simple geometry objects in this example:

Function GetToString(obj as SimpleGeomertyClass) as String
  Select Case True
    Case TypeOf obj is PointClass
      Return String.Format("Point: Position = {0}", _
                            DirectCast(obj,Point).ToString)
    Case TypeOf obj is LineClass
      Dim Line = DirectCast(obj,LineClass)
      Return String.Format("Line: StartPosition = {0}, EndPosition = {1}", _
                            Line.StartPoint.ToString,Line.EndPoint.ToString)
    Case TypeOf obj is CircleClass
      Dim Line = DirectCast(obj,CircleClass)
      Return String.Format("Circle: CenterPosition = {0}, Radius = {1}", _
                            Circle.CenterPoint.ToString,Circle.Radius)
    Case Else
      Return String.Format("Unhandled Type {0}",TypeName(obj))
  End Select
End Function
link|flag
2  
That is an abomination. – Kyralessa Aug 6 at 21:23
1  
There is a switch in C#, and that is an abomination – Rulas Aug 18 at 22:04
show 2 more comments
vote up 3 vote down

DateTime can be initialized by surrounding your date with #

Dim independanceDay As DateTime = #7/4/1776#

You can also use type inference along with this syntax

Dim independanceDay = #7/4/1776#

That's a lot nicer than using the constructor

Dim independanceDay as DateTime = New DateTime(1776, 7, 4)
link|flag
show 4 more comments
vote up 2 vote down

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.

link|flag
1  
I see that. It makes me sad that I don't get to use VB9 at work right now. – Sam Erwin Sep 19 '08 at 18:41
show 4 more comments
vote up 2 vote down

Aliassing namespaces

Imports Lan = Langauge

Although not unique to VB.Net it is often forgotten when running into namespace conflicts.

link|flag
show 1 more comment
vote up 2 vote down

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:

Private obj As MyProject.MyNamespace.MyClass

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.

link|flag
show 1 more comment
vote up 2 vote down

MyClass keyword provides a way to refer to the class instance members as originally implemented, ignoring any derived class overrides.

link|flag
vote up 2 vote down

VB also offers the OnError statement. But it's not much of use these days.

OnError Resume Next
' Or'
OnError GoTo someline

link|flag
show 1 more comment
vote up 2 vote down

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 Dim would act like C#'s var keyword if the Option Infer is set to On (which is, by default)

link|flag
2  
ALWAYS set Option Explicit. You can use Tools-Options to insert this automatically in all new source files. – MarkJ Jun 9 at 14:44
show 2 more comments
vote up 2 vote down

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 :-)

link|flag
vote up 2 vote down

If you never know about the following you really won't believe it's true:

(It's called XML literals)

Sub Main()
    Dim xml = <root>
                  <customer id="345">
                      <name>John</name>
                      <age>17</age>
                  </customer>
                  <customer id="365">
                      <name>Doe</name>
                      <age>99</age>
                  </customer>
              </root>

    Dim names = xml...<name>
    For Each name In names
        Console.WriteLine(name.Value)
    Next

    For Each customer In xml.<customer>
        Console.WriteLine("{0}: {1}", customer.@id, customer.<age>.Value)
    Next
End Sub

'Results:

John
Doe
345: 17
365: 99

Take a look at XML Literals Tips/Tricks by Beth Massi.

link|flag
show 7 more comments
vote up 1 vote down
  • 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)!
link|flag
1  
Optional parameters and named parameters will be in the next version of C#. – whatknott Nov 6 '08 at 19:14
2  
although they are generally considered bad practice; use overloaded methods instead. – Pondidum Dec 26 '08 at 20:12
2  
Agreed on overloads, but you can't overload when you're doing COM Interop, so you have to use the optionals - and named parameters are vital when you're doing Interop into Office, where the methods have 30-40 optional parameters. – Richard Gadsden Feb 9 at 12:42
show 1 more comment
vote up 1 vote down
Sub Main()
    Select Case "value to check"
        'Check for multiple items at once:'
        Case "a", "b", "asdf" 
            Console.WriteLine("Nope...")
        Case "value to check"
            Console.WriteLine("Oh yeah! thass what im talkin about!")
        Case Else
            Console.WriteLine("Nah :'(")
    End Select


    Dim jonny = False
    Dim charlie = True
    Dim values = New String() {"asdff", "asdfasdf"}
    Select Case "asdfasdf"
        'You can perform boolean checks that has nothing to do with your var.,
        'not that I would recommend that, but it exists.'
        Case values.Contains("ddddddddddddddddddddddd")
        Case True
        Case "No sense"
        Case Else
    End Select
End Sub
link|flag
vote up 1 vote down

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:

Public Function DoSomething(byval x as integer, optional y as boolean=True, optional z as boolean=False)
' ......
End Function

then you can call it like this:

DoSomething(x:=1, y:=false)
DoSomething(x:=2, z:=true)
or
DoSomething(x:=3,y:=false,z:=true)

This is much cleaner and bug free then calling the function like this

DoSomething(1,true)
link|flag
vote up 1 vote down

The Nothing keyword can mean default(T) or null, depending on the context. You can exploit this to make a very interesting method:

'''<summary>Returns true for reference types, false for struct types.</summary>'
Public Function IsReferenceType(Of T)() As Boolean
    Return DirectCast(Nothing, T) Is Nothing
End Function
link|flag
show 1 more comment
vote up 1 vote down

It's not possible to Explicitly implement interface members in VB, but it's possible to implement them with a different name.

Interface I1
    Sub Foo()
    Sub TheFoo()
End Interface

Interface I2
    Sub Foo()
    Sub TheFoo()
End Interface

Class C
    Implements I1, I2

    Public Sub IAmFoo1() Implements I1.Foo
        ' Something happens here'
    End Sub

    Public Sub IAmFoo2() Implements I2.Foo
        ' Another thing happens here'
    End Sub

    Public Sub TheF() Implements I1.TheFoo, I2.TheFoo
        ' You shouldn't yell!'
    End Sub
End Class

link|flag
vote up 1 vote down

When declaring an array in vb.net always use the "0 to xx" syntax.

Dim b(0 to 9) as byte 'Declares an array of 10 bytes

It makes it very clear about the span of the array. Compare it with the equivalent

Dim b(9) as byte 'Declares another array of 10 bytes

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

Dim b(10) as byte 'Declares another array of 10 bytes

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

Dim b As Byte() = New Byte(0 To 9) {} 'Another way to create a 10 byte array
ReDim b(0 to 9) 'Assigns a new 10 byte array to b

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.

link|flag
show 3 more comments
vote up 1 vote down
IIf(False, MsgBox("msg1"), MsgBox("msg2"))

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):

If(False, MsgBox("msg1"), MsgBox("msg2"))

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:

Dim value = IIf(somthing, LoadAndGetValue1(), LoadAndGetValue2())

you can be sure that both values were loaded.

link|flag
vote up 1 vote down

You can use reserved keyword for properties and variable names if you surround the name with [ and ]

Public Class Item
    Private Value As Integer
    Public Sub New(ByVal value As Integer)
        Me.Value = value
    End Sub

    Public ReadOnly Property [String]() As String
        Get
            Return Value
        End Get
    End Property

    Public ReadOnly Property [Integer]() As Integer
        Get
            Return Value
        End Get
    End Property

    Public ReadOnly Property [Boolean]() As Boolean
        Get
            Return Value
        End Get
    End Property
End Class

'Real examples:
Public Class PropertyException : Inherits Exception
    Public Sub New(ByVal [property] As String)
        Me.Property = [property]
    End Sub

    Private m_Property As String
    Public Property [Property]() As String
        Get
            Return m_Property
        End Get
        Set(ByVal value As String)
            m_Property = value
        End Set
    End Property
End Class

Public Enum LoginLevel
    [Public] = 0
    Account = 1
    Admin = 2
    [Default] = Account
End Enum
link|flag
1  
This is a very useful thing to know, actually. Try typing this: Public Sub Stop It doesn't work, because Stop is a keyword. The brackets allow you to use Stop as your method name when it makes more sense than another name. – Kyralessa Dec 2 at 21:49
show 4 more comments
vote up 1 vote down

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.)

link|flag
vote up 0 vote down

You can use REM to comment out a line instead of ' . Not super useful, but helps important comments standout w/o using "!!!!!!!" or whatever.

link|flag
4  
Notice, however, that usage of REM is deprecated. The VB team is considering removing it from the next version altogether. Future-proof code is therefore better off not employing it. – Konrad Rudolph Sep 19 '08 at 16:07
1  
True, but they haven't they been saying that since VB5? – Oorang May 22 at 19:57
show 1 more comment
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Unlike in C#, in VB you can rely on the default values for non-nullable items:

Sub Main()
    'Auto assigned to def value'
    Dim i As Integer '0'
    Dim dt As DateTime '#12:00:00 AM#'
    Dim a As Date '#12:00:00 AM#'
    Dim b As Boolean 'False'
End Sub
link|flag
vote up 0 vote down
Private Sub Button1_Click(ByVal sender As Button, ByVal e As System.EventArgs) _
        Handles Button1.Click
    sender.Enabled = True
    DisableButton(sender)
End Sub

Private Sub Disable(button As Object)
    button.Enabled = false
End Sub

In this snippet you have 2 (maybe more?) things that you could never do in C#:

  1. Handles Button1.Click - attach a handler to the event externally!
  2. VB's implicitness allows you to declare the first param of the handler as the expexted type. in C# you cannot address a delegate to a different pattern, even it's the expected type.

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:

Private Sub control_Click(ByVal sender As Control, ByVal e As System.EventArgs) _
        Handles TextBox1.Click, CheckBox1.Click, Button1.Click
    sender.Text = "Got it?..."
End Sub
link|flag
1  
Your examples only work with Option Strict Off. And Option Strict Off is a Bad Thing, because it leads to runtime errors if you misspell the name of the late-bound members you're using. – Kyralessa Aug 6 at 21:38
show 1 more comment
vote up 0 vote down

Differences between ByVal and ByRef keywords:

Module Module1

    Sub Main()
        Dim str1 = "initial"
        Dim str2 = "initial"
        DoByVal(str1)
        DoByRef(str2)

        Console.WriteLine(str1)
        Console.WriteLine(str2)
    End Sub

    Sub DoByVal(ByVal str As String)
        str = "value 1"
    End Sub

    Sub DoByRef(ByRef str As String)
        str = "value 2"
    End Sub
End Module

'Results:
'initial
'value 2
link|flag
vote up 0 vote down

Refined Error Handling using When

Notice the use of when in the line Catch ex As IO.FileLoadException When attempt < 3

Do
  Dim attempt As Integer
  Try
    ''// something that might cause an error.
  Catch ex As IO.FileLoadException When attempt < 3
    If MsgBox("do again?", MsgBoxStyle.YesNo) = MsgBoxResult.No Then
      Exit Do
    End If
  Catch ex As Exception
    ''// if any other error type occurs or the attempts are too many
    MsgBox(ex.Message)
    Exit Do
  End Try
  ''// increment the attempt counter.
  attempt += 1
Loop

Recently viewed in VbRad

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.