Hiding interface members

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

As a .NET newbie, I have not yet found a way to mark interface members
(properties, methods, events) as hidden, so they don't automatically appear
in the Object Browser unless the "Show Hidden Members" option is selected,
and then only appear dimmed. Is there a way of doing this, or has this
capability been eliminated in .NET? Thanks.
 
Tim said:
As a .NET newbie, I have not yet found a way to mark interface members
(properties, methods, events) as hidden, so they don't automatically
appear in the Object Browser unless the "Show Hidden Members" option is
selected, and then only appear dimmed.

\\\
Imports System.ComponentModel
..
..
..
Public Interface IFoo
<EditorBrowsable(EditorBrowsableState.Advanced)> _
Sub Goo()
End Interface
///
 
Thanks again for the help.
--
Tim

Herfried K. Wagner said:
\\\
Imports System.ComponentModel
.
.
.
Public Interface IFoo
<EditorBrowsable(EditorBrowsableState.Advanced)> _
Sub Goo()
End Interface
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top