When coding I'm finding that Visual Studio's Intellisense drop-down is cluttered with entries for obfuscated class names from the EO.Internal namespace. (This is due to the
Show items from unimported namespaces setting)
For example:
It's especially annoying as I appear to do things like
and expect it to complete to "nu" to "null", but instead I get a "using EO.Internal" added by Visual Studio.
Can you please update these classes to either actually be
internal, or add
[EditorBrowsable(EditorBrowsableState.Never)] to all of these classes?