I'm inheriting from WebControl...
I don't believe there's a way to do this...an accessibility conflict.
Is there at least a way to hide the method in Intellisense and the toolbox?
Printable View
I'm inheriting from WebControl...
I don't believe there's a way to do this...an accessibility conflict.
Is there at least a way to hide the method in Intellisense and the toolbox?
I don't think so too . But you can hide it (disabling it actually from running) in the inherited class by using new modifier . Like this :
new public [return type] [method's name] () {} .