Neil M.
Neil M.

Reputation: 456

Can VB extract interfaces from a class like C#?

We have a large chunk of legacy code in VB that I want to unit test, so step one if building interfaces. In C#, visual studio has the cool little Refactor -> Extract Interface function. VB Doesn't, though?

Is there a good way to do this in VB?

Upvotes: 5

Views: 2057

Answers (1)

Fabian Bigler
Fabian Bigler

Reputation: 10915

Extract Interface function. VB Doesn't, though?

Yes. Unfortunately, Microsoft Visual Studio does not support refactor functionality for VB.NET.

You can install third party tools such as ReSharper, though.

For more information, also have a look at this question on SO: Refactoring options in Visual Studio 2010 differ between C# and VB

Upvotes: 5

Related Questions