VB.NET in C#

  • Thread starter Thread starter Eugene Vital
  • Start date Start date
E

Eugene Vital

There are some usefull string functions using
Microsoft.VisualBasic.Strings that aren't native to C#

Does anyone know if there is a performance hit using these classes in C#?
 
You would have to test the methods separately. Most are very close in
performance to the equivalent "pure" .NET method. There's no separate
performance hit just for accessing this namespace since it is part of the
..NET framework.

David Anton
www.tangiblesoftwaresolutions.com
Home of the Instant C# VB.NET to C# converter
and the Instant VB C# to VB.NET converter
 
There's no separate
performance hit just for accessing this namespace since it is part of the
.NET framework.

Except that you have to load an additional assembly, which increases
your app's working set.



Mattias
 
Back
Top