Ok, I guess do namespaces have to be the same as the nested folders that their in? I keep getting errors saying that the namespace should be xxx.yyy.zzz.
Example:
Folder1
Folder2
MyControl.cs
I have a namespace in it defined as:
namespace CustomControls
{
...
}
so the compiler is complaning that it must be namespace Folder1.Folder2
so is there a direct relation to file structure and namespaces? Are you forced to have a tight relation to these?