Shortly,
The Browsable()
and EditorBrowsable()
works with members. not class itself.
So, I need to hide the accessibility of class that I can't make it internal. Just hide it from code.
An internal
access modifier will make it only accessible in assembly the class created.
Why i need that?
I need some people can't access these classes. only I need writing it manually without showing in IntelliSense.
Updated
I mean all kind of types [ classes, structs, enums ].
When user or developer write for example Employee class it will not showing in intellisense. but its accessible and can be instantiated normally.