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.
Asked
Active
Viewed 2,129 times
5

Karim
- 6,113
- 18
- 58
- 83
-
1C# really lacks that feature. – Vasyl Boroviak Nov 25 '09 at 20:30
1 Answers
2
There's no way to do that for the entire project. You're limited to the file level.

Joseph
- 25,330
- 8
- 76
- 125