When do we need to use [Browsable(true)]?
[Browsable(true)]
EDIT (by SLaks): He\'s asking (I assume) why one would need to pass true as the
true
Probably when you want to make damn sure no one changes it :P
// I want to see this, dont change it to false or I'll hunt you down... [Browsable(true)] public int MyProperty { get { // Insert code here. return 0; } set { // Insert code here. } }