I have a large namespace: Foo.Bar.Space.Station.Bar, and I was in an alias as something shorter, like, Station. How to do this in the use section?
using Foo.Bar.Space.Station.Bar Object ???
so i can do it
Station.Object obj = new ...
instead
Foo.Bar.Space.Station.Bar.Object obj = new ...
Gabe
source
share