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
Do you mean you want to hide the class, or the extension methods?
If you put the static class in its own namespace, then any code which doesn't import that namespace with a using directive won't "see" the extension methods.