
Signature
HTH
Stoitcho Goutsev (100)
>> i've some public methods in class. i dont want to show this methods in
>> the dropdown list while you are typing the code in .net IDE (it long
[quoted text clipped - 5 lines]
> Regards,
> Phill W.
Hi Phill,
i tried this,
'VB
<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>
Public Sub myHiddenMethod()
End Sub
// C#
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
public void myHiddenMethod()
{
}
but unfortunately in c# this attribute fails to hide methods. i dont
know why. i'm still workin on it.
Lucky
> Phill,
>
[quoted text clipped - 13 lines]
> > Regards,
> > Phill W.
RobinS - 11 Jan 2007 16:42 GMT
In the VB version below, either it's a typo, or you
need an underscore after the > to indicate continuation.
Robin S.
------------------------------------
> Hi Phill,
> i tried this,
[quoted text clipped - 36 lines]
>> > Regards,
>> > Phill W.
Stoitcho Goutsev (100) - 11 Jan 2007 18:17 GMT
Hmm,
I've used this attribute with c# and it worked perfectly for me as far as I
remember.

Signature
Stoitcho Goutsev (100)
> Hi Phill,
> i tried this,
[quoted text clipped - 33 lines]
>> > Regards,
>> > Phill W.