I have a Company.Controls namespace that contains several controls. I also have a class called "Common" that contains the enumerations / structures / static methods that I use in all controls.
Is there a way to make these "common" peices belong to the Company.Controls namespace so I don't need to type "Common.Structure"? Essentially, it is "Common" and the namespace and class.
It just seems messy and confusing when reading code.
(all other controls are in the Blah.Controls.Common namespace)
namespace Blah.Controls
{
public enum ControlTouchState
{
Down = 0x00,
Up = 0x01,
}
public Common()
{
}
}
Thank.