Hello friends,
I feel like I can get a better response (quicker too) out of the smart people here than anywhere else on the internet.
That being said, I've got a problem with namespaces in c# that I can't figure out. I've got a utility class named TPO.Infragistics.Utility. Several of the functions in the class reference controls from Infragistics's own namespace which starts with Infragistics.WebUI.... The problem is, Infragistics.WebUI doesn't exist in TPO.Infragistics so the code never compiles.
How do I reference the top level namespace Infragistics from within my own namespace TPO.Infragistics?
Should I (can I) create an alias for Infragistics.WebUI? I just thought of that so I'll give it a try.. no sense in deleting all this typing though so I'll go ahead and post it in case this doesn't work.