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
Ok, I have the answer to this. Hallgrim's suggestion of marking the class with..
[EditorBrowsable(EditorBrowsableState.Never)]
..does actually work but only where the assembly is being referenced, rather than the project, as would be the case in my own VS solution whilst writing the assembly that provides the class. The extension methods are available as usual.