vote up 0 vote down star

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 ...

flag

4 Answers

vote up 6 vote down check

You can give an alias to a namespace in a using statement.

using Station = Foo.Bar.Space.Station.Bar;
link|flag
vote up -3 vote down
using Foo.Bar.Space.Station.Bar = Station;
link|flag
please correct your reply. – Syed Tayyab Ali Jul 29 at 19:09
vote up 1 vote down
using Station = Foo.Bar.Space.Station.Bar;

But in my opinion, having two namespaces named Bar is not a very good idea. :) Even if it's not real code.

link|flag
vote up 1 vote down

Check out http://www.blackwasp.co.uk/NamespaceAliasQualifier.aspx as it will explain it as well as some problems that could arise. Look especially at the section about namespace alias qualifiers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.