I have a large namespace: Foo.Bar.Space.Station.Bar and I was to alias is as something shorter like, Station. How do I do that in the using section?
using Foo.Bar.Space.Station.Bar Object ???
so I can do this
Station.Object obj = new ...
instead of
Foo.Bar.Space.Station.Bar.Object obj = new ...