Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的项目中有一个名为 Local 的类。有没有办法使用导入“本地”,所以我不必输入类名?例如使用
"Example()"
代替
"Local.example()"?
抱歉,您不能在 C# 中进行静态导入(如在 Java 中)或类导入(Python)。
如果您想直接调用同一项目中另一个类中的方法而不使用类实例,那么您可以继承该类。因此,您将能够直接使用该类的公共成员。
public class Local { public void Example() { } } public class ChildClass : Local { Example(); }