Let\'s say we have a class called MyClass.
public class MyClass
We also have an interface like so:
public interface MyInterface
To automatically implement all inherited methods from an interface:
C# : Just right click on interface(Prefix with 'I') name and select implement interface option.
VB.NET : Just point your cursor after interface(Prefix with 'I') name and hit enter.
Enjoy!!!