up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question
feedback

4 Answers

up vote 8 down vote accepted

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

using Station = Foo.Bar.Space.Station.Bar;
link|improve this answer
feedback
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|improve this answer
feedback

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|improve this answer
feedback
using Foo.Bar.Space.Station.Bar = Station;
link|improve this answer
please correct your reply. – Syed Tayyab Ali Jul 29 '09 at 19:09
feedback

Your Answer

 
or
required, but never shown