Is there any way to \'hide\' the name of a class, whose sole purpose is to provide extension methods, from Intellisense?
I would like to remove the class name from the
I expected that you could to this with the EditorBrowsable attribute:
[EditorBrowsable(EditorBrowsableState.Never)] static class MyExtensions { }
Unfortunately this did not seem to work.