my problem is:
i have a namespace, say "MyControls"
in this namespace there are is a control "TheControl" and numerous helper
classes and enumerations belonging to this control
what i want to do:
in class browser, only the main class (the control) should be visible, all
helper classes are reachable by MyControls.TheControl.MyHelperClass
i see two possibilities:
1. namespace: i can't create a namespace MyControls.TheControl if there
already is a class MyControls.TheControl
2. embedded classes: if i make all the helper classes embedded classes of
the main class MyControls.TheControl, then the TheControl.cs file explodes
because i have to merge in all Helper cs files
or is there another way to reach this?