G
Guest
I have a Static class which has a very large name which belongs to the same
Namespace as the class that I am working in. I want to create an "alias" for
this "big class name" so that I can save keystrokes and make the program more
readable. I am not sure how to do this globally within the class that I am
working.
Is there some way to do this?
So instead of typing
MyGiganticInformativeClassName.DoSomething()
I want to use
MGIC.DoSomething();
Namespace as the class that I am working in. I want to create an "alias" for
this "big class name" so that I can save keystrokes and make the program more
readable. I am not sure how to do this globally within the class that I am
working.
Is there some way to do this?
So instead of typing
MyGiganticInformativeClassName.DoSomething()
I want to use
MGIC.DoSomething();