is it possible to create a new alias for a given namespace for the entire project?
that is i dont want to write a "using DO = App.Do.App33;" in each cs file of the project.
but i want to do it one time in some configuration or maybe in some cs file.
and then simply DO will refer to App.Do.App33 in the entire Application.
views:
78answers:
3
+1
A:
There's no way to do that for the entire project. You're limited to the file level.
Joseph
2009-11-25 19:45:57