dotNETbeginner
dotNETbeginner

Reputation: 1

dotnet equivalent for VB methods

how can we identify a method if its dotnet specific or VB specific? Or how can we know what is the dot net equivalent method for a particular vb method ? Please help...

Eg:StrComp( "", "" ) is a VB specific String.Equals("", "") is a .NET specific

Upvotes: 0

Views: 116

Answers (1)

Preet Sangha
Preet Sangha

Reputation: 65546

Check it's namespace and assembly.

Namespace:  Microsoft.VisualBasic
Assembly:   Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)

In general unless it's a VB keyword or compiler specific entity, then you should able to use the functions from any .net language.

Upvotes: 1

Related Questions