Check whether Browsable attribute is set to TRUE
To check, whether an element in .NET has set the browsable attribute, use the following code: public static bool HasBrowsableAttributeTrue( object o ) { if ( o==null ) { return false; } else { var fi = o.GetType().GetField( o.ToString() ); var attributes…