我在里面有几个名为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;
不是重点,因为我有很多课程,我将使用它。
有没有办法创建快捷方式?如果需要,验证可以是静态的。