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.
|
|
|
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#
Option Infer must be on in order for this to function properly |
|||||||||
|
|
You need
Contrary to some of the other answers, you do not need If you're using the VS IDE you can just hover over the variable names, but to get the compile-time types of variables (
In detail:
|
|||||||
|
|
Simply use the conventional But beware that you need to enable both Minimal working example:
|
||||
|
|
|
Object worked for me in this example C#
VB
|
|||||
|