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 partic开发者_JAVA百科ular vb method ? Please help...
Eg:StrComp( "", "" ) is a VB specific String.Equals("", "") is a .NET specific
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.
精彩评论