Is there a way to tell .Net to search for a namespace from the root of the namespace tree?
Say I have these two, completely independent, namespaces:
Apple.Orange.Banana
Orange.Grape.Peach
Assume they came from different programmers and the "Orange" in each one is completely coincidental.
If I'm inside "Apple.Orange.Banana" and I trying to import (or reference) "Orange.Grape.Peach," .Net things I'm trying to search from the "Orange" in "Apple.Orange.Banana".
How do I tell it, "Look from the root, not where I'm at now." This would be great:
~Orange.Grape.Peach
But, alas, that doesn't exist.
I know that some of you will say I should just plan namespaces better, but what happens when I'm using code from two places that come with namespaces predefined that I cannot change, and they conflict as I've noted above?