Melanie
Melanie

Reputation: 1429

C++/CLI implement interface automatically

In a C# program in VS2008, I can point at the name of the interface and say 'automatically implement".

Is there an equivalent option for C++/CLI?

Upvotes: 1

Views: 158

Answers (1)

Ben Voigt
Ben Voigt

Reputation: 283733

There is none built in to Visual Studio, but some third-party plugins provide such features for C++. I think that Whole Tomato's Visual Assist X includes it.

Upvotes: 2

Related Questions