Here’s a quick gotcha that got me again today. In C# to get a type we might use code such as the following:
var type = typeof(SomeType);
The equivalent in Visual Basic .Net is:
Dim type = GetType(SomeType)
Here’s a quick gotcha that got me again today. In C# to get a type we might use code such as the following:
var type = typeof(SomeType);
The equivalent in Visual Basic .Net is:
Dim type = GetType(SomeType)