I'm working on an ASP.NET web application with .NET 3.5 and have run into the following problem:
I'm working with a class under the namespace X.Web.Controls.Core
which references the class Utils
in the namespace X.X2.components.util
.
I get an error that Utils
is already defined in the namespace X.Web.Controls.Utils
This should not be possible since I can't find anything referencing that namespace from the class I'm working on. Any ideas?