本文介绍了Visual Studio - 从界面自动实现所有继承的方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我们有一个名为MyClass的类。
Let's say we have a class called MyClass.
public class MyClass
我们也有这样的界面:
public interface MyInterface{
public string SomeFunction(int foo, string bar, short baz){}
}
我们希望这个类继承MyInterface。
We want this class to inherit from MyInterface.
public class MyClass: MyInterface
MyInterface具有 n 属性, i 方法。如何在没有开发人员执行任何工作的情况下让Visual Studio自动实现所有这些方法和属性?
MyInterface has n properties, and i methods. How can I get Visual Studio to automatically implement all those methods and properties without the developer doing any of the legwork?
推荐答案
对于C# ,您可以右键单击MyInterface并从上下文菜单中选择实现接口。我相信VB.NET有一个类似(但略有不同)的快捷方式。
For C#, you can right click the 'MyInterface' and choose 'Implement Interface' from the context menu. I believe there is a similar (but slightly different) shortcut for VB.NET.
这篇关于Visual Studio - 从界面自动实现所有继承的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!