I'm used to create a lot of small classes and I want to organize them properly. Namespaces are best way to keep project clean and I believe that only automatization can actually help me) I wrote a script that adds a path based namespace to created C# file but there is a problem. For example, I have a namespace ProjectName.GUI and a class in the ProjectName namespace. When I'm trying to call GUI.Label() compiler throws error
*The type or namespace name `Label' does not exist in the namespace `MH.GUI'. Are you missing an assembly reference?*
May be you have recommendations how to organize my namespaces properly?
↧