Visual Studio (2008) intellisense and EditorBrowsable attribute... - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T15:11:05Zhttp://stackoverflow.com/feeds/question/978217http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/978217/visual-studio-2008-intellisense-and-editorbrowsable-attribute0Visual Studio (2008) intellisense and EditorBrowsable attribute...Chalkey2009-06-10T21:21:24Z2009-06-10T21:24:41Z
<p>I am working on a C# project that involves ASP.NET custom server controls. I have several properties, methods etc that I hide from intellisense using the...</p>
<pre><code>[EditorBrowsable(EditorBrowsableState.Never)]
</code></pre>
<p>...attribute. I also have a web project set up to test these controls. When I reference the web controls as a component in the form of a .dll, the intellisense hides the properties etc fine, but when I reference the web controls via project it shows them.</p>
<p>Is there a reason for this? Is it a bug? Or am I doing something wrong?</p>
<p>Thanks
<strong>:)</strong></p>
http://stackoverflow.com/questions/978217/visual-studio-2008-intellisense-and-editorbrowsable-attribute/978236#9782362Answer by Marc Gravell for Visual Studio (2008) intellisense and EditorBrowsable attribute...Marc Gravell2009-06-10T21:24:41Z2009-06-10T21:24:41Z<p>I believe the thinking is that if you have the project in the solution, you probably are "close enough" to the code to want to see even hidden methods - where-as if you are consuming just a dll, you probably aren't.</p>
<p>There is a community comment with the same symptom in <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.editorbrowsableattribute.aspx" rel="nofollow">MSDN</a> (bottom of the page).</p>