Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a VB.NET equivalent to the C# var keyword?

I would like to use it to retrieve the result of a LINQ query.

share|improve this question

4 Answers

Omitting the type in VB.NET (VB9) will implicitly type the variable.

This is not the same as "option strict off" in previous versions of VB.NET, as the variable is strongly-typed, it's just done so implicitly (like the C# var) keyword.

Dim foo = "foo"

foo is declared as a String.

Option Infer must be on in order for this to function properly

share|improve this answer
asked something and find the answer right away – Juan Zamudio Mar 17 '11 at 19:01
Isn't Dim foo equivalent to dynamic foo instead ? – Quandary Aug 31 '12 at 5:51
1  
@Quandry: no, it is not – Adam Robinson Aug 31 '12 at 11:04

You need Option Infer On and then just use the Dim keyword, thus:

Dim query = From x In y Where x.z = w Select x

Contrary to some of the other answers, you do not need Option Strict On.

If you're using the VS IDE you can just hover over the variable names, but to get the compile-time types of variables (GetType(variableName) does not compile - "Type '<variablename>' is not defined." - and VarType(variable) is actually just the VB version of variable.GetType() which returns the type of the instance stored in the variable at runtime) I used:

Function MyVarType(Of T)(ByRef Var As T) As Type
    Return GetType(T)
End Function

In detail:

  • without Dim:

    Explicit Off, gives Object

    Explicit On, error "Name '' is not declared."

  • with Dim:

    • Infer On, gives expected types
    • Infer Off:

      Strict On, error "Option Strict On requires all declarations to have an 'As' clasue."

      Strict Off, gives Object

share|improve this answer
You can simply use x.GetType() in VB – I hadn’t tested my answer’s code, hence the mistake in my old answer. This actually yields the runtime type which can differ from what you get using GetType(T), though. Finally, Strict On if course not required for this to work, but should be always on, anyway, and may prevent mistakes if the programmer has forgotten to specify Infer On. – Konrad Rudolph Mar 22 '10 at 7:56
I agree Option Strict On is good practice, but x.GetType doesn't provide the answer to the question asked here. I haven't tested it, but with Infer Off and Strict Off a simple Dim query = From ... example may work (although the guts of Linq queries may need some of the other effects of Strict On or Infer On to work correctly) and query.GetType() will return the anonymous type, not Object, which query will be declared to be. – Mark Hurd Mar 23 '10 at 3:57
Thanks for the correction; I've altered my answer to reflect this adjustment. The wording of the MSDN docs is awkward and seems to imply that Strict is required, but they don't actually say that. – Adam Robinson Mar 23 '10 at 16:56

Simply use the conventional Dim keyword without a type.

But beware that you need to enable both Option Strict and Option Infer to make this work, otherwise the code either will not compile (Strict On, Infer Off) or will declare the variable as of type Object, which isn’t what you want (Strict Off).

Minimal working example:

Option Strict On
Option Infer On

Imports System

Module MainModule
    Sub Main()
        Dim i = 42
        Dim s = "Hello"
        Console.WriteLine("{0}, {1}", i.GetType(), s.GetType())
        ' Prints System.Int32, System.String '
    End Sub
End Module
share|improve this answer

Object worked for me in this example

C#

JToken projects = client.Search(ObjCode.PROJECT, new { groupID = userGroupID });
foreach( var j in projects["data"].Children()) {
        Debug.WriteLine("Name: {0}", j.Value<string>("name"));
}

VB

Dim projects As JToken = client.Search(ObjCode.PROJECT, New With { _
Key .groupID = userGroupID _
})

For Each j As Object In projects("data").Children()
       Debug.WriteLine("Name: {0}", j.Value(Of String)("name"))
Next
share|improve this answer
4  
The VB code is using late binding here. (You wouldn't have intellisense when you type j..) This does not correspond to the C# code. – Mark Hurd Feb 14 '12 at 3:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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