Auto-generate an interface implementation in C#?

Juan picture Juan · Aug 10, 2010 · Viewed 21.7k times · Source

I know this is quite lazy but, is there any way on Visual C# 2010 Express to auto-generate an interface implementation? (I don't mean at runtime but at design time, like a code snippet). Perhaps with a third party utility?

Answer

womp picture womp · Aug 10, 2010

I'm not familiar with Express enough to know if they removed this feature, but you should just be able to right-click your public class MyClass : MyInterface statement and choose "Implement Inteface".

If this is removed in Express, you can always use Resharper for this feature.