Merging namespaces as one
Is it possible to merge multiple namespaces as one The reason I want to do this is because I want to inherit someone elses control, but use my own namespace. Using my own namespace stops the UI design tools from working. What I need is to be able to make C# think my control exists within the other name space, while still existing in my namespace. Maybe I'm asking for to much.

Merging namespaces as one
Liping Zhu
Anatoliy Mogylevets
Oh, OK. Then you can just change the namespace of the control before compiling it. I thought it was an external project for which you only had a dll.
Mary Rabi
DarSev
computer tech austin
Namespaces exist to create seperation. You can't fool the IDE into thinking one namespace is the same as another, although you can use a using statement to make a namespace part of local scope, obviously.