为静态方法/类创建快捷方式

时间:2018-03-27 13:38:45

标签: c#

我在里面有几个名为Verify with static methods的类。

namespace Very.Long.Namespace.One{
public class Verify
{
   ///static methods
}
}

namespace Very.Long.Namespace.Two{
    public class Verify
    {
       ///static methods
    }
    }

他们有很长的命名空间,我想在其他类中使用它们,避免写:

Very.Long.Namespace.One.Verify.Method();
Very.Long.Namespace.Two.Verify.Method();

我想将它们用作:

One.Method();
Two.Method();

using One = namespace Very.Long.Namespace.One;不是重点,因为我有很多课程,我将使用它。

有没有办法创建快捷方式?如果需要,验证可以是静态的。

0 个答案:

没有答案