|
I have the two classes above. How can I hide the base class from the object browser?
|
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Master BillaPosted Aug 18, 2009, 8:47 PM
You can do this way
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public class ABC : WebPart
{
}
thank you
Lamont JonesPosted Aug 19, 2009, 3:52 PM