How can I prevent a public class that provides extension methods from appearing in Intellisense?

后端 未结 4 502
名媛妹妹
名媛妹妹 2021-01-21 08:57

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

相关标签:
4条回答
  • 2021-01-21 09:18

    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.

    0 讨论(0)
  • 2021-01-21 09:23

    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.

    0 讨论(0)
  • 2021-01-21 09:28

    I expected that you could to this with the EditorBrowsable attribute:

    [EditorBrowsable(EditorBrowsableState.Never)]
    static class MyExtensions { }
    

    Unfortunately this did not seem to work.

    0 讨论(0)
  • 2021-01-21 09:32

    If you put your extension methods in a module there is a attribute called HideModuleName which will hide the module name from showing up in Intellisense.

    0 讨论(0)
提交回复
热议问题