Hidden Features of C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T11:54:12Z http://stackoverflow.com/feeds/question/9033 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/9033/hidden-features-of-c 839 Hidden Features of C#? Serhat Özgel 2008-08-12T16:32:24Z 2009-11-05T00:10:43Z <p>This came to my mind after I learned the following from <a href="http://www.stackoverflow.com/questions/8941/generic-type-checking" rel="nofollow">this question</a>:</p> <pre><code>where T : struct </code></pre> <p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p> <p>Some of us even mastered the stuff like <a href="http://msdn.microsoft.com/en-us/library/512aeb7t.aspx" rel="nofollow">Generics</a>, <a href="http://msdn.microsoft.com/en-us/library/bb397696.aspx" rel="nofollow">anonymous types</a>, <a href="http://msdn.microsoft.com/en-us/library/bb397687.aspx" rel="nofollow">lambdas</a>, <a href="http://msdn.microsoft.com/en-us/library/bb397676.aspx" rel="nofollow">linq</a>, ...</p> <p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p> <h1>Here are the revealed features so far:</h1> <p><br /></p> <h2>Keywords</h2> <p><a href="http://msdn.microsoft.com/en-us/library/9k7k7cf0.aspx" rel="nofollow"><code>yield</code></a> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035">Michael Stum</a><br /> <code>var</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035">Michael Stum</a><br /> <code>using()</code> statement by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036">kokos</a><br /> <code>readonly</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036">kokos</a><br /> <code>as</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041">Mike Stone</a><br /> <code>as</code> / <code>is</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070">Ed Swangren</a><br /> <code>as</code> / <code>is</code> (improved) by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092">Rocketpants</a><br /> <code>default</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639">deathofrats</a><br /> <code>global::</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152">pzycoman</a><br /> <code>using()</code> blocks by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316">AlexCuse</a><br /> <code>volatile</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691">Jakub Šturc</a><br /> <code>extern alias</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926">Jakub Šturc</a></p> <h2>Attributes</h2> <p><code>DefaultValue</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035">Michael Stum</a><br /> <code>ObsoleteAttribute</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037">DannySmurf</a><br /> <code>DebuggerDisplayAttribute</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048">Stu</a><br /> <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx" rel="nofollow"><code>DebuggerBrowsable</code></a> and <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx" rel="nofollow"><code>DebuggerStepThrough</code></a> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/33474#33474">bdukes</a><br /> <code>ThreadStaticAttribute</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932">marxidad</a><br /> <code>FlagsAttribute</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752">Martin Clarke</a><br /> <a href="http://msdn.microsoft.com/en-us/library/4xssyw96.aspx" rel="nofollow"><code>ConditionalAttribute</code></a> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342">AndrewBurns</a></p> <h2>Syntax</h2> <p><a href="http://msdn.microsoft.com/en-us/library/ms173224.aspx" rel="nofollow"><code>??</code></a> operator by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036">kokos</a><br /> number flaggings by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038">Nick Berardi</a><br /> <code>where T:new</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067">Lars Mæhlum</a><br /> implicit generics by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099">Keith</a><br /> one-parameter lambdas by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099">Keith</a><br /> auto properties by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099">Keith</a><br /> namespace aliases by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099">Keith</a><br /> verbatim string literals with @ by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114">Patrick</a><br /> <code>enum</code> values by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738">lfoust</a><br /> @variablenames by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088">marxidad</a><br /> <code>event</code> operators by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277">marxidad</a><br /> format string brackets by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321">Portman</a><br /> property accessor accessibility modifiers by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715">xanadont</a><br /> ternary operator (<code>?:</code>) by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450">JasonS</a><br /> <code>checked</code> and <code>unchecked</code> operators by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/355991#355991">Binoj Antony</a><br /> <code>implicit and explicit</code> operators by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470">Flory</a> </p> <h2>Language Features</h2> <p>Nullable types by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055">Brad Barker</a><br /> Currying by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066">Brian Leahy</a><br /> anonymous types by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099">Keith</a><br /> <code>__makeref __reftype __refvalue</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125">Judah Himango</a><br /> object initializers by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547">lomaxx</a><br /> format strings by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207">David in Dakota</a><br /> Extension Methods by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932">marxidad</a><br /> <code>partial</code> methods by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395">Jon Erickson</a><br /> preprocessor directives by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482">John Asbeck</a><br /> <code>DEBUG</code> pre-processor directive by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081">Robert Durgin</a><br /> operator overloading by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914">SefBkn</a><br /> type inferrence by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811">chakrit</a><br /> boolean operators <a href="http://www.java2s.com/Tutorial/CSharp/0160%5F%5FOperator-Overload/truefalseoperatorforComplex.htm" rel="nofollow">taken to next level</a> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/32148#32148">Rob Gough</a> </p> <h2>Visual Studio Features</h2> <p>snippets by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037">DannySmurf</a> </p> <h2>Framework</h2> <p><code>TransactionScope</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042">KiwiBastard</a><br /> <code>DependantTransaction</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042">KiwiBastard</a><br /> <code>Nullable&lt;T&gt;</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118">IainMH</a><br /> <code>Mutex</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181">Diago</a><br /> <code>System.IO.Path</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401">ageektrapped</a><br /> <code>WeakReference</code> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723">Juan Manuel</a> </p> <h2>Methods and Properties</h2> <p><code>String.IsNullOrEmpty()</code> method by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042">KiwiBastard</a><br /> <code>List.ForEach()</code> method by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042">KiwiBastard</a><br /> <code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581">Will Dean</a><br /> <code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;.Value</code> properties by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/15393#15393">Rismo</a><br /> <code>GetValueOrDefault</code> method by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158">John Sheehan</a> </p> <h2>Tips &amp; Tricks</h2> <p>nice method for event handlers by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9282#9282">Andreas H.R. Nilsson</a><br /> uppercase comparisons by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137">John</a><br /> access anonymous types without reflection by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441">dp</a><br /> a quick way to lazily instantiate collection properties by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945">Will</a><br /> JavaScript-like anonymous inline-functions by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130">roosteronacid</a> </p> <h2>Other</h2> <p>netmodules by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036">kokos</a><br /> <a href="http://www.albahari.com/nutshell/linqbridge.html" rel="nofollow">LINQBridge</a> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/10886#10886">Duncan Smart</a><br /> <a href="http://msdn.microsoft.com/en-us/concurrency/default.aspx" rel="nofollow">Parallel Extensions</a> by <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c/31293#31293">Joel Coehoorn</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035 103 Answer by Michael Stum for Hidden Features of C#? Michael Stum 2008-08-12T16:34:44Z 2008-08-12T16:53:28Z <p>"<a href="http://msdn.microsoft.com/en-us/library/9k7k7cf0(VS.80).aspx" rel="nofollow">yield</a>" would come to my mind. Some of the Attributes like <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx" rel="nofollow">[DefaultValue()]</a> are also among my favorites.</p> <p>The "<a href="http://msdn.microsoft.com/en-us/library/bb383973.aspx" rel="nofollow">var</a>" keyword is a bit more known, but that you can use it in .net 2.0 Applications as well (as long as you <a href="http://blogs.msdn.com/msbuild/archive/2006/11/03/msbuild-orcas-and-multi-targeting.aspx" rel="nofollow">use the .net 3.5 Compiler</a> and set it to output 2.0 code) does not seem to be known very well.</p> <p>Edit: Thanks kokos for pointing out the ?? operator, that's indeed really useful. Since it's a bit hard to google for it (as ?? is just ignored), here is the Documentation Page for that operator: <a href="http://msdn.microsoft.com/en-us/library/ms173224.aspx" rel="nofollow"><a href="http://msdn.microsoft.com/en-us/library/ms173224.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms173224.aspx</a></a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036 36 Answer by kokos for Hidden Features of C#? kokos 2008-08-12T16:35:55Z 2008-08-12T16:39:23Z <ol> <li>?? - great operator </li> <li>using - great keyword that can be used for more than just calling Dispose </li> <li>readonly - should be used more </li> <li>netmodules - too bad there's no support in Visual Studio</li> </ol> http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037 7 Answer by DannySmurf for Hidden Features of C#? DannySmurf 2008-08-12T16:37:19Z 2009-06-08T15:32:14Z <p>Two of my personal favourites, which I see rarely used:</p> <ol> <li>Snippets (particularly for properties, which was made even better for 2008)</li> <li>The <a href="http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx" rel="nofollow">ObsoleteAttribute</a></li> </ol> http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038 26 Answer by Nick Berardi for Hidden Features of C#? Nick Berardi 2008-08-12T16:38:50Z 2009-09-12T20:35:47Z <p>Honestly the experts by the very definition should know this stuff. But to answer your question:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ya5y69ds.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ya5y69ds.aspx</a></p> <p>The compiler flagging for numbers are widely known for these:</p> <pre><code>Decimal = M Float = F Double = D // for example double d = 30D; </code></pre> <p>However these are more obscure:</p> <pre><code>Long = L Unsigned Long = UL Unsigned Int = U </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041 143 Answer by Mike Stone for Hidden Features of C#? Mike Stone 2008-08-12T16:42:04Z 2008-08-12T16:42:04Z <p>I didn't know the "as" keyword for quite a while.</p> <pre><code>MyClass myObject = (MyClass) obj; </code></pre> <p>vs</p> <pre><code>MyClass myObject = obj as MyClass; </code></pre> <p>The second will return null if obj isn't a MyClass, rather than throw a class cast exception.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042 35 Answer by KiwiBastard for Hidden Features of C#? KiwiBastard 2008-08-12T16:45:22Z 2009-09-27T19:31:34Z <ul> <li>TransactionScope and <a href="http://msdn.microsoft.com/en-us/library/system.transactions.dependenttransaction.aspx" rel="nofollow">DependentTransaction</a> in System.Transactions is a lightweight way to use transaction processing in .NET - it's not just for <a href="http://msdn.microsoft.com/en-us/library/ms229973.aspx" rel="nofollow">Database transactions either</a></li> <li>String.IsNullOrEmpty is one that I am surprised to learn a lot of developers don't know about</li> <li>List.ForEach - iterate through your generic list using a delegate method</li> </ul> <p>There are more, but that is the three obvious ones of the top of my head...</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048 69 Answer by Stu for Hidden Features of C#? Stu 2008-08-12T16:59:40Z 2009-04-26T16:34:20Z <p>Attributes in general, but most of all <a href="http://msdn.microsoft.com/en-us/library/x810d419.aspx" rel="nofollow">DebuggerDisplay</a>. Saves you years.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055 83 Answer by Brad Barker for Hidden Features of C#? Brad Barker 2008-08-12T17:07:59Z 2008-08-20T14:50:02Z <p>I tend to find that most C# developers don't know about 'nullable' types. Basically, primitives that can have a null value.</p> <pre><code>double? num1 = null; double num2 = num1 ?? -100; </code></pre> <p>Set a nullable double, <em>num1</em>, to null, then set a regular double, <em>num2</em>, to <em>num1</em> or <em>-100</em> if <em>num1</em> was null.</p> <p><a href="http://msdn.microsoft.com/en-us/library/1t3y8s4s(VS.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/1t3y8s4s(VS.80).aspx</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066 3 Answer by Brian Leahy for Hidden Features of C#? Brian Leahy 2008-08-12T17:24:46Z 2008-08-12T17:24:46Z <p>Currying using </p> <pre><code>FastFunc&lt;T,U&gt; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067 2 Answer by Lars Mæhlum for Hidden Features of C#? Lars Mæhlum 2008-08-12T17:29:29Z 2009-10-07T07:57:49Z <p>I have often come across the need to have a Generic parameter-object persisted into the viewstate in a base class.</p> <pre><code>public abstract class BaseListControl&lt;ListType,KeyType,ParameterType&gt; : UserControl where ListType : BaseListType &amp;&amp; ParameterType : BaseParameterType, new { private const string viewStateFilterKey = "FilterKey"; protected ParameterType Filters { get { if (ViewState[viewStateFilterKey] == null) ViewState[viewStateFilterKey]= new ParameterType(); return ViewState[viewStateFilterKey] as ParameterType; } set { ViewState[viewStateFilterKey] = value; } } } </code></pre> <p>Usage:</p> <pre><code>private void SomeEventHappened(object sender, EventArgs e) { Filters.SomeValue = SomeControl.SelectedValue; } private void TimeToFetchSomeData() { GridView.DataSource = Repository.GetList(Filters); } </code></pre> <p>This little trick with the "where ParameterType : BaseParameterType, new" is what makes it really work.<br /> With this property in my baseclass, I can automate handling of paging, setting filter values to filter a gridview, make sorting really easy, etc etc.</p> <p>Really just saying that generics can be an enormously powerful beast in the wrong hands.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070 0 Answer by Ed Swangren for Hidden Features of C#? Ed Swangren 2008-08-12T17:42:35Z 2008-08-12T20:42:15Z <p>@Horsey: You're right, I thought of that after I posted. I am no pro here and am still learning, so I do make the occasional bad post here and there.</p> <p>@Mike: The as keyword is great, and also lends itself to the use of the "is" keyword:</p> <pre><code> MyClass c; if (obj is MyClass) c = obj as MyClass </code></pre> <p>I'm sure that this is no secret, but I did not find this for at least 6 months into learning C#.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092 51 Answer by Dogmang for Hidden Features of C#? Dogmang 2008-08-12T18:03:12Z 2008-08-12T18:03:12Z <p>@Ed, I'm a bit reticent about posting this as it's little more than nitpicking. However, I would point out that in your code sample:</p> <pre><code>MyClass c; if (obj is MyClass) c = obj as MyClass </code></pre> <p>If you're going to use 'is', why follow it up with a safe cast using 'as'? If you've ascertained that obj is indeed MyClass, a bog-standard cast:</p> <pre><code>c = (MyClass)obj </code></pre> <p>...is never going to fail.</p> <p>Similarly, you could just say:</p> <pre><code>MyClass c = obj as MyClass; if(c != null) { ... } </code></pre> <p>I don't know enough about .NET's innards to be sure, but my instincts tell me that this would cut a maximum of two type casts operations down to a maximum of one. It's hardly likely to break the processing bank either way; personally, I think the latter form looks cleaner too.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099 135 Answer by Keith for Hidden Features of C#? Keith 2008-08-12T18:23:40Z 2008-08-29T16:22:10Z <p>All the above, plus </p> <p>1) implicit generics (why only on methods and not on classes?)</p> <pre><code>void GenericMethod&lt;T&gt;( T input ) { ... } //infer type, so GenericMethod&lt;int&gt;(23); //you don't need the &lt;&gt; GenericMethod(23); //is enough </code></pre> <p>2) simple lambdas with one parameter:</p> <pre><code>x =&gt; x.ToString() //simplify so many calls </code></pre> <p>3) anon types and initialisers:</p> <pre><code>//duck-typed: works with any .Add method var colours = new Dictionary&lt;string, string&gt; { { "red", "#ff0000" }, { "green", "#00ff00" }, { "blue", "#0000ff" } }; int[] arrayOfInt = new { 1, 2, 3, 4, 5 }; </code></pre> <p><hr /></p> <p>Another one:</p> <p>4) Auto properties can have different scopes:</p> <pre><code>Public int MyId { get; private set; } </code></pre> <p><hr /></p> <p>Thanks @<a href="#12152" rel="nofollow">pzycoman</a> for reminding me:</p> <p>5) Namespace aliases (not that you're likely to need this particular distinction):</p> <pre><code>using web = System.Web.UI.WebControls; using win = System.Windows.Forms; web::Control aWebControl = new web::Control(); win::Control aFormControl = new win::Control(); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114 73 Answer by Patrick for Hidden Features of C#? Patrick 2008-08-12T18:38:16Z 2008-08-12T19:01:09Z <p>Here's a useful one for regular expressions and file paths:</p> <pre><code>"c:\\program files\\oldway" @"c:\program file\newway" </code></pre> <p>The @ tells the compiler to ignore any escape characters in a string.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118 0 Answer by IainMH for Hidden Features of C#? IainMH 2008-08-12T18:40:45Z 2008-08-12T18:44:54Z <p>@Brad Barker</p> <p>I think if you have to use nullable types, it's better to use Nullable&lt;.T> rather than the question mark notation. It makes it eye-achingly obvious that magic is occurring. Not sure why anyone would ever want to use Nullable&lt;.bool> though. :-)</p> <p>Krzysztof Cwalina (one of the authors of Framwork Design Guidlines) has a good post here: <a href="http://blogs.msdn.com/kcwalina/archive/2008/07/16/Nullable.aspx" rel="nofollow" title="Virtual Workspaces"><a href="http://blogs.msdn.com/kcwalina/archive/2008/07/16/Nullable.aspx" rel="nofollow">http://blogs.msdn.com/kcwalina/archive/2008/07/16/Nullable.aspx</a></a></p> <p>And Mike Hadlow has a nice post on <a href="http://mikehadlow.blogspot.com/2006/10/nullability-voodoo.html" rel="nofollow">Nullability Voodoo</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125 46 Answer by Judah Himango for Hidden Features of C#? Judah Himango 2008-08-12T18:50:29Z 2009-03-04T18:19:56Z <p>Here are some interesting hidden C# features:</p> <pre><code>__makeref __reftype __refvalue </code></pre> <p>These are undocumented C# keywords (even Visual Studio recognizes them!) that were added to for a more efficient boxing/unboxing prior to generics. They work in coordination with the System.TypedReference struct.</p> <p>There's also __arglist, which is used for variable length parameter lists.</p> <p>One thing folks don't know much about is System.WeakReference -- a very useful class that keeps track of an object but still allows the garbage collector to collect it.</p> <p>The most useful "hidden" feature would be the yield return keyword. It's not really hidden, but a lot of folks don't know about it. LINQ is built atop this; it allows for delay-executed queries by generating a state machine under the hood. Raymond Chen recently posted about the <a href="http://blogs.msdn.com/oldnewthing/archive/2008/08/12/8849519.aspx" rel="nofollow">internal, gritty details</a>.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9129#9129 58 Answer by Michael Stum for Hidden Features of C#? Michael Stum 2008-08-12T18:53:44Z 2008-11-22T07:39:07Z <blockquote> <p>Not sure why anyone would ever want to use Nullable&lt;bool> though. :-)</p> </blockquote> <p>True, False, <a href="http://thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx" rel="nofollow">FileNotFound</a>?</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9179#9179 -1 Answer by IainMH for Hidden Features of C#? IainMH 2008-08-12T19:39:00Z 2008-08-12T19:39:00Z <blockquote> <blockquote> <p>Not sure why anyone would ever want to use Nullable&lt;.bool> though. :-)</p> </blockquote> <p>True, False, <a href="http://thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx" rel="nofollow" title="PyXML">FileNotFound</a>?</p> </blockquote> <p>@Michael Stum - That is <em>brilliant</em> :-)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181 0 Answer by Diago for Hidden Features of C#? Diago 2008-08-12T19:40:28Z 2008-08-12T19:40:28Z <p>In no particular order:</p> <p>Lists&lt;> Mutex</p> <p>The new property definitions shortcut in Framework 3.5.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9282#9282 159 Answer by Andreas H.R. Nilsson for Hidden Features of C#? Andreas H.R. Nilsson 2008-08-12T21:57:39Z 2009-05-08T17:26:06Z <p><strong>Avoid checking for null event handlers</strong></p> <p>Adding an empty delegate to events at declaration, suppressing the need to always check the event for null before calling it is awesome. Example:</p> <pre><code>public delegate void MyClickHandler(object sender, string myValue); public event MyClickHandler Click = delegate {}; // add empty delegate! </code></pre> <p>Let you do this</p> <pre><code>public void DoSomething() { Click(this, "foo"); } </code></pre> <p>Instead of this</p> <pre><code>public void DoSomething() { // Unnecessary! MyClickHandler click = Click; if (click != null) // Unnecessary! { click(this, "foo"); } } </code></pre> <p>Please also see this <a href="http://stackoverflow.com/questions/840715/the-proper-way-of-raising-events-in-the-net-framework">related discussion</a> and this <a href="http://blogs.msdn.com/ericlippert/archive/2009/04/29/events-and-races.aspx" rel="nofollow">blog post</a> by Eric Lippert on this topic (and possible downsides).</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401 236 Answer by ageektrapped for Hidden Features of C#? ageektrapped 2008-08-13T01:53:50Z 2008-08-13T01:53:50Z <p>This isn't C# per se, but I haven't seen anyone who really uses <code>System.IO.Path.Combine()</code> to the extent that they should. In fact, the whole Path class is really useful, but <strong>no one uses it!</strong></p> <p>I'm willing to bet that every production app has the following code, even though it shouldn't:</p> <pre><code>string path = dir + "\\" + fileName; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/9406#9406 90 Answer by lomaxx for Hidden Features of C#? lomaxx 2008-08-13T02:07:26Z 2009-09-12T20:33:53Z <blockquote> <p>The @ tells the compiler to ignore any escape characters in a string.</p> </blockquote> <p>Just wanted to clarify this one... it doesn't tell it to ignore the escape characters, it actually tells the compiler to interpret the string as a literal.</p> <p>If you have </p> <pre><code>string s = @"cat dog fish" </code></pre> <p>it will actually print out as (note that it even includes the whitespace used for indentation):</p> <pre><code>cat dog fish </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547 101 Answer by lomaxx for Hidden Features of C#? lomaxx 2008-08-13T07:39:13Z 2008-08-13T07:39:13Z <p>Two things I like are Automatic properties so you can collapse your code down even further:</p> <pre><code>private string _name; public string Name { get { return _name; } set { _name = value; } } </code></pre> <p>becomes</p> <pre><code>public string Name { get; set;} </code></pre> <p>Also object initializers:</p> <pre><code>Employee emp = new Employee(); emp.Name = "John Smith"; emp.StartDate = DateTime.Now(); </code></pre> <p>becomes</p> <pre><code>Employee emp = new Employee {Name="John Smith", StartDate=DateTime.Now()} </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581 11 Answer by Will Dean for Hidden Features of C#? Will Dean 2008-08-13T08:29:09Z 2008-08-13T08:29:09Z <p>On the basis that this thread should be entitled "<em>things you didn't know about C# until recently despite thinking you already knew everything</em>", my personal feature is asynchronous delegates.</p> <p>Until I read Jeff Richter's C#/CLR book (excellent book, everyone doing .NET should read it) I didn't know that you could call <em>any</em> delegate using BeginInvoke / EndInvoke. I tend to do a lot of ThreadPool.QueueUserWorkItem calls (which I guess is much like what the delegate BeginInvoke is doing internally), but the addition of a standardised join/rendezvous pattern may be really useful sometimes.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639 79 Answer by Eric Minkes for Hidden Features of C#? Eric Minkes 2008-08-13T10:20:07Z 2008-08-13T10:20:07Z <p>The 'default' keyword in generic types:</p> <pre><code>T t = default(T); </code></pre> <p>results in a 'null' if T is a reference type, and 0 if it is an int, false if it is a boolean, etcetera.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207 4 Answer by David in Dakota for Hidden Features of C#? David in Dakota 2008-08-13T18:47:41Z 2008-09-08T17:30:22Z <p><strong>Lambda Expressions</strong></p> <pre><code>Func&lt;int, int, int&gt; add = (a, b) =&gt; (a + b); </code></pre> <p><strong>Obscure String Formats</strong></p> <pre><code>Console.WriteLine("{0:D10}", 2); // 0000000002 Dictionary&lt;string, string&gt; dict = new Dictionary&lt;string, string&gt; { {"David", "C#"}, {"Johann", "Perl"}, {"Morgan", "Python"} }; Console.WriteLine( "{0,10} {1, 10}", "Programmer", "Language" ); Console.WriteLine( "-".PadRight( 21, '-' ) ); foreach (string key in dict.Keys) { Console.WriteLine( "{0, 10} {1, 10}", key, dict[key] ); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/10886#10886 6 Answer by Duncan Smart for Hidden Features of C#? Duncan Smart 2008-08-14T10:59:21Z 2008-08-14T10:59:21Z <p>I love the fact that I can use LINQ to objects on plain old .NET 2.0 (i.e. without requiring .NET 3.5 to be installed everywhere). All you need is an implementation of all the query operator Extension methods - see <a href="http://www.albahari.com/nutshell/linqbridge.html" rel="nofollow">LINQBridge</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/10892#10892 4 Answer by Serhat Özgel for Hidden Features of C#? Serhat Özgel 2008-08-14T11:07:01Z 2008-08-14T11:07:01Z <p>In addition to duncansmart's reply, also extension methods can be used on framework 2.0. Just add an ExtensionAttribute class under System.Runtime.CompilerServices namespace and you can use extension methods (only with c# 3.0 of course).</p> <pre><code>namespace System.Runtime.CompilerServices { public class ExtensionAttribute : Attribute { } } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738 19 Answer by lfoust for Hidden Features of C#? lfoust 2008-08-14T22:31:26Z 2008-08-14T22:31:26Z <p>Being able to have enum types have values other than int (the default)</p> <pre><code>public enum MyEnum : long { Val1 = 1, Val2 = 2 } </code></pre> <p>Also, the fact that you can assign any numeric value to that enum:</p> <pre><code>MyEnum e = (MyEnum)123; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137 170 Answer by John for Hidden Features of C#? John 2008-08-15T11:06:48Z 2008-08-15T11:06:48Z <blockquote> <p>From <a href="http://rads.stackoverflow.com/amzn/click/0735621632" rel="nofollow" title="Coding Guidelines for Cocoa">CLR via C#</a>:</p> <p>When normalizing strings, it is highly recommended that you use ToUpperInvariant instead of ToLowerInvariant because <strong>Microsoft has optimized the code for performing uppercase comparisons</strong>.</p> </blockquote> <p>I remember one time my coworker always changed strings to uppercase before comparing. I've always wondered why he does that because I feel it's more "natural" to convert to lowercase first. After reading the book now I know why.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152 6 Answer by pzycoman for Hidden Features of C#? pzycoman 2008-08-15T11:34:02Z 2008-08-15T11:34:02Z <p>My favourite is the</p> <pre><code>global:: </code></pre> <p>keyword to escape namespace hell with some of our 3rd party code providers...</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316 5 Answer by AlexCuse for Hidden Features of C#? AlexCuse 2008-08-15T14:51:42Z 2008-08-15T14:51:42Z <p>I didn't start to really appreciate the "using" blocks until recently. They make things so much more tidy :)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/13422#13422 44 Answer by Brad Wilson for Hidden Features of C#? Brad Wilson 2008-08-16T23:55:28Z 2008-08-16T23:55:28Z <p>This one is not "hidden" so much as it is misnamed.</p> <p>A lot of attention is paid to the algorithms "map", "reduce", and "filter". What most people don't realize is that .NET 3.5 added all three of these algorithms, but it gave them very SQL-ish names, based on the fact that they're part of LINQ.</p> <blockquote> <p>"map" => Select <br>Transforms data from one form into another</p> <p>"reduce" => Aggregate <br>Aggregates values into a single result</p> <p>"filter" => Where <br>Filters data based on a criteria</p> </blockquote> <p>The ability to use LINQ to do inline work on collections that used to take iteration and conditionals can be incredibly valuable. It's worth learning how all the LINQ extension methods can help make your code much more compact and maintainable.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441 57 Answer by dp for Hidden Features of C#? dp 2008-08-17T01:01:28Z 2008-08-17T01:01:28Z <p>Returning anonymous types from a method and accessing members without reflection.</p> <pre><code>// Useful? probably not. private void foo() { var user = AnonCast(GetUserTuple(), new { Name = default(string), Badges = default(int) }); Console.WriteLine("Name: {0} Badges: {1}", user.Name, user.Badges); } object GetUserTuple() { return new { Name = "dp", Badges = 5 }; } // Using the magic of Type Inference... static T AnonCast&lt;T&gt;(object obj, T type) { return (T) obj; } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932 10 Answer by Mark Cidade for Hidden Features of C#? Mark Cidade 2008-08-17T21:13:24Z 2008-08-17T21:13:24Z <p>There's also the ThreadStaticAttribute to make a static field unique per thread, so you can have strongly typed thread-local storage.</p> <p>Even if extension methods aren't that secret (LINQ is based on them), it may not be so obvious as to how useful and more readable they can be for utility helper methods:</p> <pre><code>//for adding multiple elements to a collection that doesn't have AddRange //e.g., collection.Add(item1, item2, itemN); static void Add&lt;T&gt;(this ICollection&lt;T&gt; coll, params T[] items) { foreach (var item in items) coll.Add(item); } //like string.Format() but with custom string representation of arguments //e.g., "{0} {1} {2}".Format&lt;Custom&gt;(c=&gt;c.Name,"string",new object(),new Custom()) // result: "string {System.Object} Custom1Name" static string Format&lt;T&gt;(this string format, Func&lt;T,object&gt; select, params object[] args) { for(int i=0; i &lt; args.Length; ++i) { var x = args[i] as T; if (x != null) args[i] = select(x); } return string.Format(format, args); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/14036#14036 0 Answer by Pat for Hidden Features of C#? Pat 2008-08-18T00:10:35Z 2008-08-18T00:10:35Z <blockquote> <p>I think if you have to use nullable types, it's better to use Nullable&lt;.T> rather than the question mark notation. It makes it eye-achingly obvious that magic is occurring. Not sure why anyone would ever want to use Nullable&lt;.bool> though.</p> </blockquote> <p>In a VB.Net Web-Service where the parameter might not be passed through <em>(because the partners request wasn't consistent or reliable)</em>, but had to pass validation against the proposed type <em>(Boolean for "if is search request")</em>. Chalk it up to "another demand by management"...</p> <p><em>...and yes, I know some people think it's not the right way to do these things, but <strong>IsSearchRequest As Nullable(Of Boolean)</strong> saved me losing my mind that night!</em></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088 60 Answer by Mark Cidade for Hidden Features of C#? Mark Cidade 2008-08-18T01:45:02Z 2008-08-18T01:45:02Z <p>Using @ for variable names that are keywords.</p> <pre><code>var @object = new object(); var @string = ""; var @if = IpsoFacto(); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277 25 Answer by Mark Cidade for Hidden Features of C#? Mark Cidade 2008-08-18T07:33:17Z 2008-11-06T17:46:05Z <p>Events are really delegates under the hood and any delegate object can have multiple functions attached to it and detatched from it using the += and -= operators, respectively.</p> <p>Events can also be controlled with the add/remove, similar to get/set except they're invoked when += and -= are used:</p> <pre><code>public event EventHandler SelectiveEvent(object sender, EventArgs args) { add { if (value.Target == null) throw new Exception("No static handlers!"); _SelectiveEvent += value; } remove { _SelectiveEvent -= value; } } EventHandler _SelectiveEvent; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723 16 Answer by Juan Manuel for Hidden Features of C#? Juan Manuel 2008-08-18T14:43:56Z 2008-08-18T14:43:56Z <p>It's not actually a C# hidden feature, but I recently discovered the <a href="http://msdn.microsoft.com/en-us/library/system.weakreference.aspx" rel="nofollow">WeakReference class</a> and was blown away by it (although this may be biased by the fact that it helped me found a solution to a <a href="http://www.juanformoso.com.ar/post/2008/07/30/Weak-References.aspx" rel="nofollow">particular problem of mine</a>...)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/14926#14926 0 Answer by martinlund for Hidden Features of C#? martinlund 2008-08-18T17:06:41Z 2008-08-18T17:06:41Z <p>I must admit that i'm not sure wether this performs better or worse than the normal ASP.NET repeater onItemDatabound cast code, but anyway here's my 5 cent.</p> <pre><code>MyObject obj = e.Item.DataItem as MyObject; if(obj != null) { //Do work } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321 40 Answer by Portman for Hidden Features of C#? Portman 2008-08-18T22:29:45Z 2008-08-18T22:29:45Z <p>If you're trying to use brackets inside a String.Format expression...</p> <pre><code>int foo = 3; string bar = "blind mice"; String.Format("{{i am in brackets!}} {0} {1}", foo, bar); //outputs "{i am in brackets!} 3 blind mice" </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/15352#15352 14 Answer by mgsloan for Hidden Features of C#? mgsloan 2008-08-18T23:08:35Z 2009-01-30T06:14:04Z <p>Near all the cool ones have been mentioned. Not sure if this one's well known or not</p> <p>C# property/field constructor initialization:</p> <pre><code>var foo = new Rectangle() { Fill = new SolidColorBrush(c), Width = 20, Height = 20 }; </code></pre> <p>This creates the rectangle, and sets the listed properties.</p> <p>I've noticed something funny - you can have a comma at the end of the properties list, without it being a syntax error. So this is also valid:</p> <pre><code>var foo = new Rectangle() { Fill = new SolidColorBrush(c), Width = 20, Height = 20, }; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/15393#15393 18 Answer by Rismo for Hidden Features of C#? Rismo 2008-08-18T23:47:06Z 2008-08-18T23:47:06Z <p>Not hidden, but I think that a lot of developers are not using the HasValue and Value properties on the nullable types.</p> <pre><code> int? x = null; int y; if (x.HasValue) y = x.Value; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715 15 Answer by xanadont for Hidden Features of C#? xanadont 2008-08-19T04:41:58Z 2008-08-19T04:41:58Z <p>@lomaxx I also learned the other day (the same time I learned your tip) is that you can now have disparate access levels on the same property:</p> <pre><code>public string Name { get; private set;} </code></pre> <p>That way only the class itself can set the Name property.</p> <pre><code>public Name(string name) { Name = name; } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/15765#15765 200 Answer by John for Hidden Features of C#? John 2008-08-19T05:43:53Z 2008-08-27T01:34:54Z <p>From <a href="http://www.west-wind.com/weblog/posts/236298.aspx" rel="nofollow">Rick Strahl</a>:</p> <p>You can chain the ?? operator so that you can do a bunch of null comparisons.</p> <pre><code>string result = value1 ?? value2 ?? value3 ?? String.Empty; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395 17 Answer by Jon Erickson for Hidden Features of C#? Jon Erickson 2008-08-19T15:23:12Z 2008-08-20T17:24:49Z <h1>Partial Methods</h1> <p><a href="http://blogs.msdn.com/charlie/archive/2007/11/11/partial-methods.aspx" rel="nofollow">Charlie Calvert explains partial methods on his blog</a></p> <p><a href="http://weblogs.asp.net/scottcate/archive/2008/06/18/teched-orlando-compiler-tricks.aspx" rel="nofollow">Scott Cate has a nice partial method demo here</a></p> <ol> <li>Points of extensibility in Code Generated class (LINQ to SQL, EF)</li> <li>Does not get compiled into the dll if it is not implemented (check it out with .NET Reflector)</li> </ol> http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450 42 Answer by JasonS for Hidden Features of C#? JasonS 2008-08-19T15:54:52Z 2008-08-19T15:54:52Z <p>Maybe not an advanced technique, but one I see all the time that drives me crazy:</p> <pre><code>if (x == 1) { x = 2; } else { x = 3; } </code></pre> <p>can be condensed to:</p> <pre><code>x = (x==1) ? 2 : 3; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482 4 Answer by John Asbeck for Hidden Features of C#? John Asbeck 2008-08-19T16:07:50Z 2008-08-19T16:07:50Z <p>Preprocessor Directives can be nifty if you want different behavior between Debug and Release modes.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ed8yd1ha.aspx" rel="nofollow"><a href="http://msdn.microsoft.com/en-us/library/ed8yd1ha.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ed8yd1ha.aspx</a></a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158 6 Answer by John Sheehan for Hidden Features of C#? John Sheehan 2008-08-20T15:00:30Z 2009-07-23T18:48:37Z <p>I see a lot of people replicate the functionality of <code>Nullable&lt;T&gt;.GetValueOrDefault(T)</code>.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/18619#18619 4 Answer by nmiranda for Hidden Features of C#? nmiranda 2008-08-20T19:17:16Z 2008-08-20T19:17:16Z <p>Has anybody used "props"?</p> <p>You type "prop" and then press [TAB] twice, it generates useful code for your properties and can speed your typing.</p> <p>I know this works in VS 2005 (I use it) but I don´t know in previous versions.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752 6 Answer by Martin Clarke for Hidden Features of C#? Martin Clarke 2008-08-22T03:55:51Z 2008-08-22T03:55:51Z <p>How about the about the <a href="http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx" rel="nofollow">FlagsAttribute</a> on an enumeration. It allows you to perform bitwise operations... took me forever to find out how to do bitwise operations in .NET nicely.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914 4 Answer by SemiColon for Hidden Features of C#? SemiColon 2008-08-24T07:52:19Z 2008-08-24T07:52:19Z <p>I'm pretty sure everyone is familiar with operator overloading, but maybe some aren't.</p> <pre><code>class myClass { private string myClassValue = ""; public myClass(string myString) { myClassValue = myString; } public override string ToString() { return myClassValue; } public static myClass operator &lt;&lt;(myClass mc, int shiftLen) { string newString = ""; for (int i = shiftLen; i &lt; mc.myClassValue.Length; i++) newString += mc.myClassValue[i].ToString(); mc.myClassValue = newString.ToString(); return mc; } public static myClass operator &gt;&gt;(myClass mc, int shiftLen) { char[] newString = new char[shiftLen + mc.myClassValue.Length]; for (int i = shiftLen; i &lt; mc.myClassValue.Length; i++) newString[i] += mc.myClassValue[i - shiftLen]; mc.myClassValue = new string(newString); return mc; } public static myClass operator +(myClass mc, string args) { if (args.Trim().Length &gt; 1) mc.myClassValue += args; return mc; } public static myClass operator -(myClass mc, string args) { if (args.Trim().Length &gt; 1) { Regex rgx = new Regex(args); mc.myClassValue = rgx.Replace(mc.myClassValue, ""); } return mc; } } </code></pre> <p>I think it's pretty cool to be able to shift a string left and right using &lt;&lt; and >> or to remove a set of strings that follow a regular expression pattern using -=</p> <pre><code>myClass tmpClass = new myClass(" HelloWorld123"); tmpClass -= @"World"; tmpClass &lt;&lt;= 2; Console.WriteLine(tmpClass); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/25393#25393 1 Answer by Haacked for Hidden Features of C#? Haacked 2008-08-24T22:10:22Z 2008-11-24T15:24:30Z <p>One interesting thing I've learned is that different parts of the framework and C# language were written at different times, hence inconsistencies. For example, the framework itself violates many FxCop rules because the rules weren't all in place when the framework was written.</p> <p>Also, the using statement was intended for delinieating "scopes" and not specifically for disposing resources. It was written after the lock statement. Eric Gunnerson <a href="http://haacked.com/archive/2004/05/27/DifficultiesOfLanguageDesign.aspx" rel="nofollow">once mentioned</a> something along the lines of that if the using statement came first, they might have not needed to write the lock statement (though who knows, maybe they would have anyways), because the using statement might have been sufficient.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/26096#26096 3 Answer by John Boker for Hidden Features of C#? John Boker 2008-08-25T14:21:57Z 2009-09-12T20:55:05Z <p>@lainMH,</p> <p>Nullable booleans are useful when retrieving values from a database that are nullable and when putting values back in. Sometimes you want to know the field has not been set.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/26139#26139 -13 Answer by unknown (yahoo) for Hidden Features of C#? unknown (yahoo) 2008-08-25T14:39:55Z 2008-08-25T14:39:55Z <p>It really seems like this site is developing nothing like what the faq is talking about:</p> <p>What kind of questions can I ask here?</p> <p>Programming questions, of course! As long as your question is:</p> <pre><code>* detailed and specific * written clearly and simply * of interest to at least one other programmer somewhere </code></pre> <p>If you ask a question that has been asked before, that is OK and deliberately allowed. No question is too trivial or too "newbie". What kind of questions should I not ask here?</p> <p>Avoid asking questions that are subjective, argumentative, or require extended discussion. This is a place for questions that can be answered! </p> http://stackoverflow.com/questions/9033/hidden-features-of-c/26192#26192 2 Answer by David Basarab for Hidden Features of C#? David Basarab 2008-08-25T15:09:18Z 2008-08-25T15:09:18Z <p>In reading the book on development of the .NET framework. A good piece of advice is not to use bool to turn stuff on or off, but rather use ENums.</p> <p>With ENums you give yourself some expandability without having to rewrite any code to add a new feature to a function.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/27941#27941 12 Answer by Frep D-Oronge for Hidden Features of C#? Frep D-Oronge 2008-08-26T12:54:41Z 2008-08-26T12:54:41Z <p>The C# ?? null coalescing operator - </p> <p>Not really hidden, but rarely used. Probably because a lot of developers run a mile when they see the conditional ? operator, so they runt two when they see this one. Used:</p> <pre><code>string mystring = foo ?? "foo was null" </code></pre> <p>rather than</p> <pre><code>string mystring; if (foo==null) mystring = "foo was null"; else mystring = foo; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811 188 Answer by chakrit for Hidden Features of C#? chakrit 2008-08-26T18:34:44Z 2009-10-10T13:46:35Z <p>Read all the answers but I think <strong>lambdas and type inferrence</strong> is underrated.</p> <p>Havn't seen anyone mentioned that <strong>Lambdas can have multiple statement</strong> and they <strong>double as a compatible delegate object</strong> automatically (just make sure the signature match) as in:</p> <pre><code>Console.CancelKeyPress += (sender, e) =&gt; { Console.WriteLine("CTRL+C detected!\n"); e.Cancel = true; }; </code></pre> <p>Note that I don't have a <code>new CancellationEventHandler</code> nor do I have to specify types of sender and e, they're inferrable from the event. Which is why this is less cumbersome to writing the whole <code>delegate (blah blah)</code> which also requires you to specify types of parameters.</p> <p><strong>Lambdas doesn't need to return anything</strong> and type inference is extremely powerful in context like this.</p> <p>and BTW, you can always return <strong>Lambdas that make Lambdas</strong> in the functional programming sense. For example, here's a lambda that make a lambda that handles a Button.Click event:</p> <pre><code>Func&lt;int, int, EventHandler&gt; makeHandler = (dx, dy) =&gt; (sender, e) =&gt; { var btn = (sender as Button); btn.Top += dy; btn.Left += dx; }; btnUp.Click += makeHandler(0, -1); btnDown.Click += makeHandler(0, 1); btnLeft.Click += makeHandler(-1, 0); btnRight.Click += makeHandler(1, 0); </code></pre> <p>Note the chaining: <code>(dx, dy) =&gt; (sender, e) =&gt;</code></p> <p>Now that's why I'm happy to have taken the functional programming class :-)</p> <p>Other than the pointers in C, I think its the other fundamental thing you should learn :-)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/28830#28830 2 Answer by Drakiula for Hidden Features of C#? Drakiula 2008-08-26T18:51:13Z 2008-08-26T18:51:13Z <p>Reflection Emit and Expression trees come to mind...</p> <p>Don't miss Jeffrey Richter's CLR via C# and Jon Skeet's <img src="http://www.manning.com/skeet/skeet_cover150.jpg" alt="alt text" /></p> <p>See here for some resources:</p> <p><a href="http://www.codeproject.com/KB/trace/releasemodebreakpoint.aspx" rel="nofollow">http://www.codeproject.com/KB/trace/releasemodebreakpoint.aspx</a></p> <p><a href="http://www.codeproject.com/KB/dotnet/Creating_Dynamic_Types.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/Creating_Dynamic_Types.aspx</a></p> <p><a href="http://www.codeproject.com/KB/cs/lambdaexpressions.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/lambdaexpressions.aspx</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081 12 Answer by Robert Durgin for Hidden Features of C#? Robert Durgin 2008-08-26T22:19:01Z 2009-09-27T19:39:45Z <p>The <em>#if DEBUG</em> pre-processor directive. It is Useful for testing and debugging (though I usually prefer to go the unit testing route).</p> <pre><code>string customerName = null; #if DEBUG customerName = "Bob" #endif </code></pre> <p>It will only execute code block if Visual Studio is set to compile in 'Debug' mode. Otherwise the code block will be ignored by the compiler (and grayed out in Visual Studio).</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/31293#31293 7 Answer by Joel Coehoorn for Hidden Features of C#? Joel Coehoorn 2008-08-27T21:05:41Z 2008-08-27T21:05:41Z <p>I'm late to this party, so my first choices are already taken. But I didn't see anyone mention this gem yet:</p> <p><a href="http://msdn.microsoft.com/en-us/concurrency/default.aspx" rel="nofollow">Parallel Extensions to the .Net Framework</a></p> <p>It has things like replace with Parallel.For or foreach with Parallel.ForEach</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/32148#32148 7 Answer by Jakub Šturc for Hidden Features of C#? Jakub Šturc 2008-08-28T12:55:57Z 2008-09-22T19:03:55Z <p><a href="http://msdn.microsoft.com/en-us/library/6x6y6z4d.aspx" rel="nofollow">true</a> and <a href="http://msdn.microsoft.com/en-us/library/6292hy1k.aspx" rel="nofollow">false</a> operators are really weird.</p> <p>More comprehensive example can be found <a href="http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm" rel="nofollow">here</a>.</p> <p><em>Edit: There is related SO question <a href="http://stackoverflow.com/questions/33265/whats-the-false-operator-in-c-good-for">What’s the false operator in C# good for?</a></em></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/32250#32250 1 Answer by Rob Gough for Hidden Features of C#? Rob Gough 2008-08-28T13:24:55Z 2008-08-28T13:24:55Z <p>@Ed: FxCop will pull you up for that, you're casting twice.</p> <p>Instead, you should be doing the following;</p> <pre><code>MyClass c = obj as MyClass; if (obj != null) </code></pre> <p>The <code>as</code> will, if it cannot cast succesfully, assign a null.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/32472#32472 0 Answer by nemoby for Hidden Features of C#? nemoby 2008-08-28T14:49:03Z 2008-08-28T14:49:03Z <p>Returning IQueryable projections</p> <pre><code>protected void LdsPostings_Selecting(object sender, LinqDataSourceSelectEventArgs e) { var dc = new MyDataContext(); var query = dc.Posting.AsQueryable(); if (isCondition1) { query = query.Where(q =&gt; q.PostedBy == Username); e.Result = QueryProjection(query); return; } ... if (isConditionN) { query = query.Where(q =&gt; q.Status.StatusName == "submitted"); query = query.Where(q =&gt; q.ReviewedBy == Username); e.Result = QueryProjection(query); return; } } </code></pre> <p>and rather than coding the projection multiple times, create a single method:</p> <pre><code>private IQueryable QueryProjection(IQueryable&lt;Posting&gt; query) { return query.Select(p =&gt; new { p.PostingID, p.Category.CategoryName, p.Type.TypeName, p.Status.StatusName, p.Description, p.Updated, p.PostedBy, p.ReviewedBy, }); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/32706#32706 10 Answer by Nathan Lee for Hidden Features of C#? Nathan Lee 2008-08-28T16:17:15Z 2008-08-28T16:17:15Z <p>I love using the @ character for SQL queries. It keeps the sql nice and formatted and without having to surround each line with a string delimiter.</p> <pre><code>string sql = @"SELECT firstname, lastname, email FROM users WHERE username = @username AND password = @password"; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/33271#33271 2 Answer by chakrit for Hidden Features of C#? chakrit 2008-08-28T20:07:41Z 2009-09-12T20:56:44Z <p>Thought about <strong>@dp AnonCast</strong> and decided to try it out a bit. Here's what I come up with that might be useful to some:</p> <pre><code>// using the concepts of dp's AnonCast static Func&lt;T&gt; TypeCurry&lt;T&gt;(Func&lt;object&gt; f, T type) { return () =&gt; (T)f(); } </code></pre> <p>And here's how it might be used:</p> <pre><code>static void Main(string[] args) { var getRandomObjectX = TypeCurry(GetRandomObject, new { Name = default(string), Badges = default(int) }); do { var obj = getRandomObjectX(); Console.WriteLine("Name : {0} Badges : {1}", obj.Name, obj.Badges); } while (Console.ReadKey().Key != ConsoleKey.Escape); } static Random r = new Random(); static object GetRandomObject() { return new { Name = Guid.NewGuid().ToString().Substring(0, 4), Badges = r.Next(0, 100) }; } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/33384#33384 27 Answer by kronoz for Hidden Features of C#? kronoz 2008-08-28T20:59:59Z 2009-01-26T14:50:42Z <p>I like looking up stuff in a list like:-</p> <pre><code>bool basketContainsFruit(string fruit) { return new[] { "apple", "orange", "banana", "pear" }.Contains(fruit); } </code></pre> <p>Rather than:-</p> <pre><code>bool basketContainsFruit(string fruit) { return fruit == "apple" || fruit == "orange" || fruit == "banana" || fruit == "pear"; } </code></pre> <p>Doesn't come up that much in practice, but the idea of making the items to match against the subject of the search can be really quite useful.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/33474#33474 23 Answer by bdukes for Hidden Features of C#? bdukes 2008-08-28T21:46:35Z 2008-08-28T21:46:35Z <p>A couple other attributes from the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.aspx" rel="nofollow">System.Diagnostics</a> namespace are quite helpful.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx" rel="nofollow">DebuggerBrowsable</a> will let you hide variables from the debugger window (we use it for all private backing variables of exposed properties). Along with that, <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx" rel="nofollow">DebuggerStepThrough</a> makes the debugger step over that code, very useful for dumb properties (probably should be converted to auto-properties if you can take a dependency to the C# 3.0 compiler). As an example</p> <pre><code>[DebuggerBrowsable(DebuggerBrowsableState.Never)] private string nickName; public string NickName { [DebuggerStepThrough] get { return nickName; } [DebuggerStepThrough] set { this.nickName = value; } } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342 9 Answer by Andrew Burns for Hidden Features of C#? Andrew Burns 2008-08-29T21:28:19Z 2009-09-03T04:45:24Z <p><a href="http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx" rel="nofollow">ConditionalAttribute</a></p> <p>Allows you to tell the compiler to omit the call to the method marked with the attribute under certain conditions (#define).</p> <p>The fact that the method call is omitted also means that its parameters are not evaluated. This is very handy and it's what allows you to call expensive validation functions in Debug.Assert() and not worry about them slowing down your release build. </p> http://stackoverflow.com/questions/9033/hidden-features-of-c/37285#37285 50 Answer by nt for Hidden Features of C#? nt 2008-09-01T00:03:41Z 2009-09-27T19:25:06Z <pre><code>Environment.NewLine </code></pre> <p>for system independent newlines.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/37467#37467 18 Answer by John for Hidden Features of C#? John 2008-09-01T05:03:20Z 2008-09-01T05:03:20Z <p><strong>Nesting Using Statements</strong></p> <p>Usually we do it like this:</p> <pre><code>StringBuilder sb = new StringBuilder(); using (StringWriter sw = new StringWriter()) { using (IndentedTextWriter itw = new IndentedTextWriter(sw)) { ... } } </code></pre> <p>But we can do it this way:</p> <pre><code>StringBuilder sb = new StringBuilder(); using (StringWriter sw = new StringWriter()) using (IndentedTextWriter itw = new IndentedTextWriter(sw)) { ... } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926 2 Answer by Jakub Šturc for Hidden Features of C#? Jakub Šturc 2008-09-01T13:21:10Z 2009-09-12T21:10:40Z <p>The <a href="http://msdn.microsoft.com/en-us/library/ms173212.aspx" rel="nofollow">extern alias</a> keyword to reference two versions of assemblies that have the same fully-qualified type names.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/38703#38703 0 Answer by Eduardo Diaz for Hidden Features of C#? Eduardo Diaz 2008-09-02T02:10:06Z 2009-09-12T21:25:17Z <p>PreviousPage property:</p> <p>"The System.Web.UI.Page representing the page that transferred control to the current page."</p> <p>It is very useful.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/41872#41872 2 Answer by Michael Prewecki for Hidden Features of C#? Michael Prewecki 2008-09-03T15:03:20Z 2008-09-03T15:03:20Z <p>TryParse method for each primitive type is great when validating user input.</p> <p> double doubleValue Double.TryParse(myDataRow("myColumn"), doubleValue)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/44782#44782 13 Answer by Andreas H.R. Nilsson for Hidden Features of C#? Andreas H.R. Nilsson 2008-09-04T21:06:29Z 2009-06-08T17:17:29Z <p><strong>Foreach uses Duck Typing</strong></p> <p>Paraphrasing, or shamelessly stealing from <a href="http://blogs.msdn.com/kcwalina/archive/2007/07/18/DuckNotation.aspx" rel="nofollow">Krzysztof Cwalinas blog</a> on this. More interesting trivia than anything.</p> <p>For your object to support foreach, you <em>don't</em> have to implement <em>IEnumerable</em>. I.e. this is not a constraint and it isn't checked by the compiler. What's checked is that</p> <ul> <li>Your object provide a public method <em>GetEnumerator</em> that <ul> <li>takes no parameters</li> <li>return a type that has two members <ol> <li>a parameterless <em>method MoveNext</em> that <em>returns a boolean</em></li> <li>a <em>property Current</em> with a getter that <em>returns an Object</em></li> </ol></li> </ul></li> </ul> <p>For example, </p> <pre><code>class Foo { public Bar GetEnumerator() { return new Bar(); } public struct Bar { public bool MoveNext() { return false; } public object Current { get { return null; } } } } // the following complies just fine: Foo f = new Foo(); foreach (object o in f) { Console.WriteLine("Krzysztof Cwalina's da man!"); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/45398#45398 8 Answer by Pop Catalin for Hidden Features of C#? Pop Catalin 2008-09-05T07:49:27Z 2009-09-12T20:45:00Z <p>There are some really hidden keywords and features in C# related to the TypedReference undocumented class. The following keywords are undocumented:</p> <ul> <li>**__makeref</li> <li>__reftype</li> <li>__refvalue</li> <li><strong>arglist</strong></li> </ul> <p>Examples of use:</p> <pre><code>// Create a typed reference int i = 1; TypedReference tr1 = __makeref(i); // Get the type of a typed reference Type t = __reftype(tr1); // Get the value of a typed referece int j = __refvalue(tr1, int); // Create a method that accepts and arbitrary number of typed references void SomeMethod(__arglist) { ... // Call the method int x = 1; string y = "Foo"; Object o = new Object(); SomeMethod(__arglist(x,y,o)); // And finally iterate over method parameters void SomeMethod(__arglist) { ArgIterator ai = new ArgIterator(__arglist); while(ai.GetRemainingCount() &gt;0) { TypedReference tr = ai.GetNextArg(); Console.WriteLine(TypedReference.ToObject(tr)); }} </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/45454#45454 0 Answer by Mark Ingram for Hidden Features of C#? Mark Ingram 2008-09-05T09:14:04Z 2008-09-05T09:14:04Z <p>@<a href="http://beta.stackoverflow.com/questions/9033?#9092" rel="nofollow">Robbie Rocketpants</a></p> <blockquote> <p>"but my instincts tell me that this would cut a maximum of two type casts operations down to a maximum of one."</p> </blockquote> <p>If you do the cast as you were suggesting in example 1 (using is &amp; as), it results in 2 calls to the "is" operator. Because when you do "c = obj as MyClass", first it calls "is" behind the scenes, then if it fails that it simply returns null.</p> <p>If you do the cast as you were suggesting in example 2,</p> <pre><code>c = (MyClass)obj </code></pre> <p>Then this actually performs the "is" operation again, then if it fails that check,it throws an exception (InvalidCastException).</p> <p>So, if you wanted to do a lightweight dynamic cast, it's best to do the 3rd example you provided:</p> <pre><code>MyClass c; if (obj is MyClass) { c = obj as MyClass } if (c != null) { } </code></pre> <p><strong>vs</strong></p> <pre><code>MyClass c = obj as MyClass; if (c != null) { } </code></pre> <p>You can see which is quicker, more consise and clearer.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/45873#45873 18 Answer by Konamiman for Hidden Features of C#? Konamiman 2008-09-05T13:54:30Z 2008-09-05T13:54:30Z <p>@David in Dakota:</p> <pre><code>Console.WriteLine( "-".PadRight( 21, '-' ) ); </code></pre> <p>I used to do this, until I discovered that the String class has a constructor that allows you to do the same thing in a cleaner way:</p> <pre><code>new String('-',22); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/46157#46157 33 Answer by DAC for Hidden Features of C#? DAC 2008-09-05T16:10:21Z 2008-09-05T16:10:21Z <p><strong>InternalsVisibleTo</strong> attribute is one that is not that well known, but can come in increadibly handy in certain circumstances. It basically allows another assembly to be able to access "internal" elements of the defining assembly.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/46290#46290 19 Answer by Judah Himango for Hidden Features of C#? Judah Himango 2008-09-05T16:53:07Z 2008-09-05T16:53:07Z <p>I just found out about this one today -- and I've been working with C# for 5 years!</p> <p>It's the namespace alias qualifier:</p> <pre><code>extern alias YourAliasHere </code></pre> <p>You can use it to load multiple versions of the same type. This can be useful in maintenance or upgrade scenarios where you have an updated version of your type that won't work in some old code, but you need to upgrade it to the new version. <a href="http://blogs.msdn.com/abhinaba/archive/2005/11/30/498278.aspx" rel="nofollow">Slap on a namespace alias qualifier</a>, and the compiler will let you have both types in your code.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/49607#49607 8 Answer by nialljsmith for Hidden Features of C#? nialljsmith 2008-09-08T12:49:17Z 2009-09-12T20:48:36Z <p>I like the keyword <em>continue</em>.</p> <p>If you hit a condition in a loop and don't want to do anything but advance the loop just stick in "continue;".</p> <p>E.g.:</p> <pre><code>foreach(object o in ACollection) { if(NotInterested) continue; } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/50891#50891 5 Answer by lagerdalek for Hidden Features of C#? lagerdalek 2008-09-08T22:49:47Z 2009-06-17T22:02:34Z <p>Not a C# specific thing, but I am a ternary operations junkie.</p> <p>Instead of </p> <pre><code>if (boolean Condition) { //Do Function } else { //Do something else } </code></pre> <p>you can use a succinct</p> <pre><code>booleanCondtion ? true operation : false operation; </code></pre> <p>e.g.</p> <p>Instead of</p> <pre><code>int value = param; if (doubleValue) { value *= 2; } else { value *= 3; } </code></pre> <p>you can type</p> <pre><code>int value = param * (tripleValue ? 3 : 2); </code></pre> <p>It does help write succinct code, but nesting the damn things can be nasty, and they can be used for evil, but I love the little suckers nonetheless</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/51171#51171 0 Answer by Thomas H for Hidden Features of C#? Thomas H 2008-09-09T03:30:49Z 2008-09-09T03:30:49Z <p>Saw a mention of List.ForEach above; 2.0 introduced a bevy of predicate-based collection operations - Find, FindAll, Exists, etc. Coupled with anonymous delegates you can almost achieve the simplicity of 3.5's lambda expressions.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/51966#51966 21 Answer by Bryan for Hidden Features of C#? Bryan 2008-09-09T14:04:46Z 2009-09-12T20:38:35Z <p>A couple things I like:</p> <p>-If you create an interface similar to:</p> <pre><code> public interface SomeObject&lt;T&gt; where T : SomeObject&lt;T&gt;, new() </code></pre> <p>you force anything that inherits from this interface to contain a parameterless constructor... very useful for a couple things I've run across.</p> <p>-Using anonymous types to create a useful object on the fly</p> <pre><code>var myAwesomeObject = new {Name="Foo", Size=10}; </code></pre> <p>-Finally, many Java developers are familiar with syntax like</p> <pre><code>public synchronized void MySynchronizedMethod(){} </code></pre> <p>however, in C# this is not valid syntax. The workaround is a method header:</p> <pre><code> [MethodImpl(MethodImplOptions.Synchronized)] public void MySynchronizedMethod(){} </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/52998#52998 75 Answer by jolson for Hidden Features of C#? jolson 2008-09-09T21:52:00Z 2008-09-09T21:52:00Z <p>I think one of the most under-appreciated and lesser-known features of C# (3.5) are Expression Trees, <strong>especially</strong> when combined with Generics and Lambdas. This is an approach to API creation that newer libraries like NInject and Moq are using.</p> <p>For example, let's say that I want to register a method with an API and that API needs to get the method name</p> <p>Given this class:</p> <pre><code>public class MyClass { public void SomeMethod() { /* Do Something */ } } </code></pre> <p>Before, it was very common to see developers do this with strings and types (or something else largely string-based):</p> <pre><code>RegisterMethod(typeof(MyClass), "SomeMethod"); </code></pre> <p>Well, that sucks because of the lack of strong-typing. What if I rename "SomeMethod"? Now, in 3.5 however, I can do this in a strongly-typed fashion:</p> <pre><code>RegisterMethod&lt;MyClass&gt;(cl =&gt; cl.SomeMethod()); </code></pre> <p>In which the RegisterMethod class uses Expression> like this:</p> <pre><code>void RegisterMethod&lt;T&gt;(Expression&lt;Action&lt;T&gt;&gt; action) where T : class { var expression = (action.Body as MethodCallExpression); if (expression != null) { // TODO: Register method Console.WriteLine(expression.Method.Name); } } </code></pre> <p>This is one big reason that I'm in love with Lambdas and Expression Trees right now.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945 137 Answer by Will for Hidden Features of C#? Will 2008-09-12T13:25:55Z 2009-09-27T19:22:59Z <p>My favorite trick is using the null coalesce operator and parentheses to automagically instantiate collections for me.</p> <pre><code>private IList&lt;Foo&gt; _foo; public IList&lt;Foo&gt; ListOfFoo { get { return _foo ?? (_foo = new List&lt;Foo&gt;()); } } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691 19 Answer by Jakub Šturc for Hidden Features of C#? Jakub Šturc 2008-09-12T18:24:24Z 2009-09-12T20:39:24Z <p>The <a href="http://msdn.microsoft.com/en-us/library/x13ttww7.aspx" rel="nofollow">volatile</a> keyword to tell to the compiler that field can be modified by multiple threads concurrently.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/63661#63661 21 Answer by Groky for Hidden Features of C#? Groky 2008-09-15T14:58:26Z 2008-09-15T14:58:26Z <p>I couldn't see this looking above - one this I didn't realise you could do until recently is call one constructor from another:</p> <pre><code>class Example { public Example(int value1) : this(value2, "Default Value") { } public Example(int value1, string value2) { m_Value1 = value1; m_value2 = value2; } int m_Value1; string m_value2; } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/72518#72518 5 Answer by Benjol for Hidden Features of C#? Benjol 2008-09-16T13:56:08Z 2009-10-10T13:53:12Z <ol> <li><p>I can't comment yet, but note that by default VS2008 automatically steps over properties, so the DebuggerStepThrough attribute is no longer needed in that case.</p></li> <li><p>Also, I haven't noticed anyone showing how to declare a parameter-less lambda (usefull for implementing Action&lt;>)</p> <p><code>() => DoSomething(x);</code></p> <p>You should also read up on closures - I'm not clever enough to explain them properly. But basically it means that the compiler does clever stuff so that the x in that line of code will still work even if it goes 'out of scope' after creating the lambda.</p></li> <li><p>I also discovered recently that you can pretend to ignore a lambda parameter:</p> <p><code>(e, _) => DoSomething(e)</code></p> <p>It's not really ignoring it, it's just that _ is a valid identifier. So you couldn't ignore both of the parameters like that, but I think it is a kind of neat way to indicate that we don't care about that parameter (typically the EventArgs which is .Empty).</p></li> </ol> http://stackoverflow.com/questions/9033/hidden-features-of-c/73097#73097 3 Answer by Thomas Danecker for Hidden Features of C#? Thomas Danecker 2008-09-16T14:43:44Z 2008-09-16T14:43:44Z <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.proxies.realproxy.aspx" rel="nofollow">System.Runtime.Remoting.Proxies.RealProxy</a></p> <p>It enables Aspect Oriented Programming in C#, and you can also do a lot of other fancy stuff with it.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/74482#74482 112 Answer by BlackTigerX for Hidden Features of C#? BlackTigerX 2008-09-16T16:53:37Z 2009-09-12T20:32:44Z <p>Aliased generics:</p> <pre><code>using ASimpleName = Dictionary&lt;string, Dictionary&lt;string, List&lt;string&gt;&gt;&gt;; </code></pre> <p>It allows you to use <code>ASimpleName</code>, instead of <code>Dictionary&lt;string, Dictionary&lt;string, List&lt;string&gt;&gt;&gt;</code>.</p> <p>Use it when you would use the same generic big long complex thing in a lot of places.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/87276#87276 3 Answer by Sixto Saez for Hidden Features of C#? Sixto Saez 2008-09-17T20:28:37Z 2008-09-17T20:28:37Z <p><strong>new modifier</strong></p> <p>Usage of the "new" modifier in C# is not exactly hidden but it's not often seen. The new modifier comes in handy when you need to "hide" base class members and not always override them. This means when you cast the derived class as the base class then the "hidden" method becomes visible and is called instead of the same method in the derived class.</p> <p>It is easier to see in code:</p> <pre><code>public class BaseFoo { virtual public void DoSomething() { Console.WriteLine("Foo"); } } public class DerivedFoo : BaseFoo { public new void DoSomething() { Console.WriteLine("Bar"); } } public class DerivedBar : BaseFoo { public override void DoSomething() { Console.WriteLine("FooBar"); } } class Program { static void Main(string[] args) { BaseFoo derivedBarAsBaseFoo = new DerivedBar(); BaseFoo derivedFooAsBaseFoo = new DerivedFoo(); DerivedFoo derivedFoo = new DerivedFoo(); derivedFooAsBaseFoo.DoSomething(); //Prints "Foo" when you might expect "Bar" derivedBarAsBaseFoo.DoSomething(); //Prints "FooBar" derivedFoo.DoSomething(); //Prints "Bar" } } </code></pre> <p>[Ed: Do I get extra points for puns? Sorry, couldn't be helped.]</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/89505#89505 9 Answer by John Spurlock for Hidden Features of C#? John Spurlock 2008-09-18T02:33:51Z 2009-09-27T20:28:29Z <p>Don't forget about <strong><a href="http://msdn.microsoft.com/en-us/library/13940fs2%28VS.71%29.aspx" rel="nofollow">goto</a></strong>.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/90432#90432 3 Answer by Alex Lyman for Hidden Features of C#? Alex Lyman 2008-09-18T06:08:15Z 2008-09-18T06:08:15Z <p>Falling through <code>switch</code>-<code>case</code>s can be achieved by having no code in a <code>case</code> (see <code>case 0</code>), or using the special <code>goto case</code> (see <code>case 1</code>) or <code>goto default</code> (see <code>case 2</code>) forms:</p> <pre><code>switch (/*...*/) { case 0: // shares the exact same code as case 1 case 1: // do something goto case 2; case 2: // do something else goto default; default: // do something entirely different break; } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/99844#99844 2 Answer by Statement for Hidden Features of C#? Statement 2008-09-19T05:18:35Z 2008-09-19T05:18:35Z <p>The #region <em>{string}</em> and #endregion pair is very neat for grouping code (outlining).</p> <pre><code>#region Using statements using System; using System.IO; using ....; using ....; #endregion </code></pre> <p>The code block can be compressed to a single describing line of text. Works inside functions aswell. </p> http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321 12 Answer by Chris for Hidden Features of C#? Chris 2008-09-19T07:48:12Z 2009-03-27T06:34:50Z <p>Static constructors.</p> <p>Instances:</p> <pre><code>public class Example { static Example() { // Code to execute during type initialization } public Example() { // Code to execute during object initialization } } </code></pre> <p>Static classes:</p> <pre><code>public static class Example { static Example() { // Code to execute during type initialization } } </code></pre> <p>MSND <a href="http://msdn.microsoft.com/en-us/library/k9x6w0hc.aspx" rel="nofollow">says</a>:</p> <blockquote> <p>A static constructor is used to initialize any static data, or to perform a particular action that needs performed once only. It is called automatically before the first instance is created or any static members are referenced.</p> </blockquote> <p>For example:</p> <pre><code>public class MyWebService { public static DateTime StartTime; static MyWebService() { MyWebService.StartTime = DateTime.Now; } public TimeSpan Uptime { get { return DateTime.Now - MyWebService.StartTime; } } } </code></pre> <p>But, you could also just as easily have done:</p> <pre><code>public class MyWebService { public static DateTime StartTime = DateTime.Now; public TimeSpan Uptime { get { return DateTime.Now - MyWebService.StartTime; } } } </code></pre> <p>So you'll be hard-pressed to find any instance when you actually need to use a static constructor.</p> <p>MSDN offers useful notes on static constructors:</p> <blockquote> <ul> <li><p>A static constructor does not take access modifiers or have parameters.</p></li> <li><p>A static constructor is called automatically to initialize the class before the first instance is created<br /> or any static members are referenced.</p></li> <li><p>A static constructor cannot be called directly.</p></li> <li><p>The user has no control on when the static constructor is executed in the program.</p></li> <li><p>A typical use of static constructors is when the class is using a log file and the constructor is used to write<br /> entries to this file.</p></li> <li><p>Static constructors are also useful when creating wrapper classes for<br /> unmanaged code, when the constructor<br /> can call the LoadLibrary method.</p></li> <li><p>If a static constructor throws an exception, the runtime will not<br /> invoke it a second time, and the type will remain uninitialized for the<br /> lifetime of the application domain in which your program is running.</p></li> </ul> </blockquote> <p>The most important note is that if an error occurs in the static constructor, a TypeIntializationException is thrown and you cannot drill down to the offending line of code. Instead, you have to examine the TypeInitializationException's InnerException member, which is the specific cause.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/102358#102358 0 Answer by unforgiven3 for Hidden Features of C#? unforgiven3 2008-09-19T14:39:16Z 2008-09-19T14:39:16Z <p>Some concurrency utilities in the BCL might qualify as hidden features.</p> <p>Things like System.Threading.Monitor are used internally by the lock keyword; clearly in C# the lock keyword is preferrable, but sometimes it pays to know how things are done at a lower level; I had to lock in C++/CLI, so I encased a block of code with calls to Monitor.Enter() and Monitor.Exit().</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/103235#103235 2 Answer by ilitirit for Hidden Features of C#? ilitirit 2008-09-19T15:59:09Z 2008-09-19T16:16:38Z <p>Literals can be used as variables of that type. eg.</p> <pre><code>Console.WriteLine(5.ToString()); Console.WriteLine(5M.GetType()); // Returns "System.Decimal" Console.WriteLine("This is a string!!!".Replace("!!", "!")); </code></pre> <p>Just a bit of trivia...</p> <p>There's quite a few things people haven't mentioned, but they have mostly to do with unsafe constructs. Here's one that can be used by "regular" code though:</p> <p>The checked/unchecked keywords:</p> <pre><code>public static int UncheckedAddition(int a, int b) { unchecked { return a + b; } } public static int CheckedAddition(int a, int b) { checked { return a + b; } // or "return checked(a + b)"; } public static void Main() { Console.WriteLine("Unchecked: " + UncheckedAddition(Int32.MaxValue, + 1)); // "Wraps around" Console.WriteLine("Checked: " + CheckedAddition(Int32.MaxValue, + 1)); // Throws an Overflow exception Console.ReadLine(); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/103449#103449 0 Answer by goodwill for Hidden Features of C#? goodwill 2008-09-19T16:26:29Z 2009-09-12T21:33:27Z <p>Before lambda comes into play, it's anonymous delegate. That could be used for blanket code similar to Ruby's blockgiven. I haven't tested how lambda works though because I want to stick with .NET 2.0 so far.</p> <p>For example when you want to make sure you remember to close your HTML tags:</p> <pre><code>MyHtmlWriter writer=new MyHtmlWriter(); writer.writeTag("html", delegate () { writer.writeTag("head", delegate() { writer.writeTag("title"...); } ) }) </code></pre> <p>I am sure if lambda is an option, that could yield much cleaner code :)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/104738#104738 0 Answer by ripper234 for Hidden Features of C#? ripper234 2008-09-19T19:20:30Z 2008-09-19T19:20:30Z <p>If 3rd-party extensions are allowed, then <a href="http://www.google.co.il/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.itu.dk%2Fresearch%2Fc5%2F&amp;ei=H_vTSPmZGZyw0gTK4t2VDQ&amp;usg=AFQjCNEd1FXV-4rROqtPwZ_jDwmW1w5pFA&amp;sig2=ILE99mEc76cQ6g-iRnPgbQ" rel="nofollow">C5</a> and <a href="http://www.google.co.il/url?sa=t&amp;source=web&amp;ct=res&amp;cd=2&amp;url=http%3A%2F%2Fmsdn.microsoft.com%2Fen-us%2Flibrary%2Fbb648752.aspx&amp;ei=N_vTSPzrComE0QSvwemcDQ&amp;usg=AFQjCNFxZGL9m_QDWlvlkRNOpiLSG_q8bA&amp;sig2=NGJmUpq-jE6kawcvaWWGYQ" rel="nofollow">Microsoft CCR</a> (see <a href="http://www.lnbogen.com/MicrosoftCCRCleanWayToWriteParallelCodeInNet.aspx" rel="nofollow">this blog post</a> for a quick introduction) are a must-know.</p> <p>C5 complements .Net's somewhat lacking collections library (not Set???), and CCR makes concurrent programming easier (I hear it's due to be merged with Parallel Extensions).</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/105042#105042 24 Answer by Wyzfen for Hidden Features of C#? Wyzfen 2008-09-19T20:02:05Z 2008-09-19T20:02:05Z <p>Dictionary.TryGetValue(K key, out V value)</p> <p>Works as a check and a get in one. Rather than;</p> <pre><code>if(dictionary.ContainsKey(key)) { value = dictionary[key]; ... } </code></pre> <p>you can just do;</p> <pre><code>if(dictionary.TryGetValue(key, out value)) { ... } </code></pre> <p>and the value has been set.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/106750#106750 1 Answer by codemeit for Hidden Features of C#? codemeit 2008-09-20T01:50:13Z 2009-09-27T20:26:31Z <p>I think a lot of people know about pointers in C but are not sure if it works in C#. You can use pointers in C# in an unsafe context:</p> <pre><code>static void Main() { int i; unsafe { // pointer pi has the address of variable i int* pi = &amp;i; // pointer ppi has the address of variable pi int** ppi = &amp;pi; // ppi(addess of pi) -&gt; pi(addess of i) -&gt; i(0) i = 0; // dereference the pi, i.e. *pi is i Console.WriteLine("i = {0}", *pi); // output: i = 0 // since *pi is i, equivalent to i++ (*pi)++; Console.WriteLine("i = {0}", *pi); // output: i = 1 // since *ppi is pi, one more dereference *pi is i // equivalent to i += 2 **ppi += 2; Console.WriteLine("i = {0}", *pi);// output: i = 3 } Console.ReadLine(); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/119648#119648 0 Answer by leppie for Hidden Features of C#? leppie 2008-09-23T07:45:27Z 2008-09-23T07:45:27Z <p>Some ?? weirdness :)</p> <pre><code>Delegate target = (target0 = target as CallTargetWithContext0) ?? (target1 = target as CallTargetWithContext1) ?? (target2 = target as CallTargetWithContext2) ?? (target3 = target as CallTargetWithContext3) ?? (target4 = target as CallTargetWithContext4) ?? (target5 = target as CallTargetWithContext5) ?? ((Delegate)(targetN = target as CallTargetWithContextN)); </code></pre> <p>Interesting to note the last cast that is needed for some reason. Bug or by design?</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/121405#121405 5 Answer by axel_c for Hidden Features of C#? axel_c 2008-09-23T14:36:02Z 2008-09-23T14:36:02Z <pre><code>System.Diagnostics.Debug.Assert (false); </code></pre> <p>will trigger a popup and allow you to attach a debugger to a running .NET process during execution. Very useful for those times when for some reason you can't directly debug an ASP.NET application.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470 2 Answer by Flory for Hidden Features of C#? Flory 2008-09-23T14:44:29Z 2009-10-10T13:20:09Z <p>There are operators for performing <a href="http://msdn.microsoft.com/en-us/library/z5z9kes2.aspx" rel="nofollow"><code>implicit</code></a> and <a href="http://msdn.microsoft.com/en-us/library/xhbhezf4.aspx" rel="nofollow"><code>explicit</code></a> user-defined type conversion between the declared class and one or more arbitrary classes. The <code>implicit</code> operator effectively allows the simulation of overloading the assignement operator, which is possible in languages such as C++ but not C#.</p> <p>It doesn't seem to be a feature one comes across very often, but it is in fact used in the <a href="http://en.wikipedia.org/wiki/Language%5FIntegrated%5FQuery#LINQ%5Fto%5FXML" rel="nofollow">LINQ to XML</a> (<code>System.Xml.Linq</code>) library, where you can implicitly convert strings to <code>XName</code> objects. Example:</p> <pre><code>XName tagName = "x:Name"; </code></pre> <p>I discovered this feature in this <a href="http://www.codeproject.com/KB/architecture/smip.aspx" rel="nofollow">article</a> about how to simulate multiple inheritance in C#.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/123701#123701 69 Answer by richdiet for Hidden Features of C#? richdiet 2008-09-23T20:39:01Z 2008-09-23T20:39:01Z <p><strong>Unions (the C++ shared memory kind) in pure, safe C#</strong></p> <p>Without resorting to unsafe mode and pointers, you can have class members share memory space in a class/struct. Given the following class:</p> <pre><code>[StructLayout(LayoutKind.Explicit)] public class A { [FieldOffset(0)] public byte One; [FieldOffset(1)] public byte Two; [FieldOffset(2)] public byte Three; [FieldOffset(3)] public byte Four; [FieldOffset(0)] public int Int32; } </code></pre> <p>You can modify the values of the byte fields by manipulating the Int32 field and vice-versa. For example, this program:</p> <pre><code> static void Main(string[] args) { A a = new A { Int32 = int.MaxValue }; Console.WriteLine(a.Int32); Console.WriteLine("{0:X} {1:X} {2:X} {3:X}", a.One, a.Two, a.Three, a.Four); a.Four = 0; a.Three = 0; Console.WriteLine(a.Int32); } </code></pre> <p>Outputs this:</p> <pre><code>2147483647 FF FF FF 7F 65535 </code></pre> <p>just add using System.Runtime.InteropServices;</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/140221#140221 23 Answer by Tony the Pony for Hidden Features of C#? Tony the Pony 2008-09-26T15:28:11Z 2008-09-26T15:28:11Z <p>A few hidden features I've come across:</p> <ul> <li><code>stackalloc</code> which lets you allocate arrays on the stack</li> <li>Anonymous methods with no explicit parameter list, which are implicitly convertible to any delegate type with non-out/ref parameters (very handy for events, as noted in an earlier comment)</li> <li>A lot of people aren't aware of what events really are (an add/remove pair of methods, like get/set for properties); field-like events in C# really declare both a variable <em>and</em> an event</li> <li>The <code>==</code> and <code>!=</code> operators can be overloaded to return types other than <code>bool</code>. Strange but true.</li> <li>The query expression translation in C# 3 is really "simple" in some ways - which means you can get it to do some <a href="http://msmvps.com/blogs/jon_skeet/archive/2008/02/29/odd-query-expressions.aspx" rel="nofollow">very odd things</a>.</li> <li>Nullable types have special boxing behaviour: a null value gets boxed to a null reference, and you can unbox from null to the nullable type too.</li> </ul> http://stackoverflow.com/questions/9033/hidden-features-of-c/149509#149509 3 Answer by Mihai Lazar for Hidden Features of C#? Mihai Lazar 2008-09-29T16:34:13Z 2009-09-27T19:45:10Z <p>One feature that I only learned about here on Stack Overflow was the ability to set an attribute on the return parameter. </p> <pre><code>[AttributeUsage( AttributeTargets.ReturnValue )] public class CuriosityAttribute:Attribute { } public class Bar { [return: Curiosity] public Bar ReturnANewBar() { return new Bar(); } } </code></pre> <p>This was truely a hidden feature for me :-)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/157242#157242 3 Answer by dariom for Hidden Features of C#? dariom 2008-10-01T11:51:29Z 2008-10-01T11:51:29Z <p>String interning. This is one that I haven't seen come up in this discussion yet. It's a little obscure, but in certain conditions it can be useful.</p> <p>The CLR keeps a table of references to literal strings (and programmatically interned strings). If you use the same string in several places in your code it will be stored once in the table. This can ease the amount of memory required for allocating strings.</p> <p>You can test if a string is interned by using <a href="http://msdn.microsoft.com/en-us/library/system.string.isinterned.aspx" rel="nofollow">String.IsInterned(string)</a> and you can intern a string using <a href="http://msdn.microsoft.com/en-us/library/system.string.intern.aspx" rel="nofollow">String.Intern(string)</a>.</p> <p><strong>Note:</strong> The CLR can hold a reference to an interned string after application or even AppDomain end. See the MSDN documentation for details.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/165795#165795 12 Answer by Tim Jarvis for Hidden Features of C#? Tim Jarvis 2008-10-03T05:34:22Z 2009-09-12T20:41:45Z <p>The params keyword, i.e.</p> <pre><code>public void DoSomething(params string[] theStrings) { foreach(string s in theStrings) { // Something with the Strings… } } </code></pre> <p>Called like</p> <pre><code>DoSomething(“The”, “cat”, “sat”, “on”, “the” ,”mat”); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/165845#165845 6 Answer by tsilb for Hidden Features of C#? tsilb 2008-10-03T05:57:04Z 2008-10-03T05:57:04Z <p>Labeling my endregions...</p> <pre><code>#region stuff1 #region stuff1a //... #endregion stuff1a #endregion stuff1 </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/174763#174763 20 Answer by t4 for Hidden Features of C#? t4 2008-10-06T15:30:27Z 2008-10-06T15:30:27Z <p>I picked this one up when using Resharper:</p> <p>Implicit Method Group Conversion </p> <pre><code>//If given this: var myStrings = new List&lt;string&gt;(){"abc","def","xyz"}; //Then this: myStrings.ForEach(s =&gt; Console.WriteLine(s)); //Is equivalent to this: myStrings.ForEach(Console.WriteLine); </code></pre> <p>See <a href="http://blog.opennetcf.com/ncowburn/2007/03/23/ImplicitMethodGroupConversionInC.aspx" rel="nofollow">http://blog.opennetcf.com/ncowburn/2007/03/23/ImplicitMethodGroupConversionInC.aspx</a> for more.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/176231#176231 1 Answer by Patrick Szalapski for Hidden Features of C#? Patrick Szalapski 2008-10-06T21:16:08Z 2008-10-06T21:16:08Z <p>Instead of using int.TryParse() or Convert.ToInt32(), I like having a static integer parsing function that returns null when it can't parse. Then I can use ?? and the ternary operator together to more clearly ensure my declaration and initialization are all done on one line in a easy-to-understand way. </p> <pre><code>public static class Parser { public static int? ParseInt(string s) { int result; bool parsed = int.TryParse(s, out result); if (parsed) return result; else return null; } // ... } </code></pre> <p>This is also good to avoid duplicating the left side of an assignment, but even better to avoid duplicating long calls on the right side of an assignment, such as a database calls in the following example. Instead of ugly if-then trees (which I run into often):</p> <pre><code>int x = 0; YourDatabaseResultSet data = new YourDatabaseResultSet(); if (cond1) if (int.TryParse(x_input, x)){ data = YourDatabaseAccessMethod("my_proc_name", 2, x); } else{ x = -1; // do something to report "Can't Parse" } } else { x = y; data = YourDatabaseAccessMethod("my_proc_name", new SqlParameter("@param1", 2), new SqlParameter("@param2", x)); } </code></pre> <p>You can do:</p> <pre><code>int x = cond1 ? (Parser.ParseInt(x_input) ?? -1) : y; if (x &gt;= 0) data = YourDatabaseAccessMethod("my_proc_name", new SqlParameter("@param1", 2), new SqlParameter("@param2", x)); </code></pre> <p>Much cleaner and easier to understand</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/181714#181714 13 Answer by GvS for Hidden Features of C#? GvS 2008-10-08T07:45:04Z 2008-10-08T07:45:04Z <p>The <a href="http://msdn.microsoft.com/en-us/library/system.environment.userinteractive.aspx" rel="nofollow">Environment.UserInteractive</a> property. </p> <blockquote> <p>The UserInteractive property reports false for a Windows process or a service like IIS that runs without a user interface. If this property is false, do not display modal dialogs or message boxes because there is no graphical user interface for the user to interact with.</p> </blockquote> http://stackoverflow.com/questions/9033/hidden-features-of-c/189100#189100 0 Answer by objektivs for Hidden Features of C#? objektivs 2008-10-09T20:37:13Z 2008-10-09T20:37:13Z <p>ContextBoundObject</p> <p>Not so much a C# thing as a .NET thing. It's another way of achieving DI although it can be hardwork. And you have to inherit from it which can be off putting.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.contextboundobject.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.contextboundobject.aspx</a></p> <p>I've used it to add logging when I decorate a class/method with a custom logging attribute.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/192127#192127 11 Answer by IgorM for Hidden Features of C#? IgorM 2008-10-10T16:22:40Z 2008-10-10T16:22:40Z <p>Full access to the call stack:</p> <pre><code>public static void Main() { StackTrace stackTrace = new StackTrace(); // get call stack StackFrame[] stackFrames = stackTrace.GetFrames(); // get method calls (frames) // write call stack method names foreach (StackFrame stackFrame in stackFrames) { Console.WriteLine(stackFrame.GetMethod().Name); // write method name } } </code></pre> <p>So, if you'll take the first one - you know what function you are in. If you're creating a helper tracing function - take one before the last one - you'll know your caller.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/195097#195097 1 Answer by sbeskur for Hidden Features of C#? sbeskur 2008-10-12T04:26:32Z 2008-10-12T04:26:32Z <p>I find this technique interesting while working with linqxml:</p> <pre><code>public bool GetFooSetting(XElement ndef){ return (bool?)ndef.Element("MyBoolSettingValue) ?? true; } </code></pre> <p>as opposed to:</p> <pre><code>public bool GetFooSetting(XElement ndef){ return ndef.Element("MyBoolSettingValue) != null ? bool.Parse(ndef.Element("MyBoolSettingValue) ) : true; } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/196627#196627 0 Answer by Greg Dean for Hidden Features of C#? Greg Dean 2008-10-13T03:18:41Z 2008-10-15T01:17:27Z <blockquote> <p>Not sure why anyone would ever want to use Nullable&lt;.bool> though</p> </blockquote> <ol> <li>tic-tac-toe</li> <li>data access</li> </ol> http://stackoverflow.com/questions/9033/hidden-features-of-c/199247#199247 50 Answer by Jan Bannister for Hidden Features of C#? Jan Bannister 2008-10-13T22:25:51Z 2008-10-13T22:25:51Z <p>If you want to exit your program without calling any finally blocks or finalizers use</p> <pre><code>Environment.FailFast() </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/199257#199257 1 Answer by Jan Bannister for Hidden Features of C#? Jan Bannister 2008-10-13T22:29:09Z 2008-10-13T22:29:09Z <pre><code>double dSqrd = Math.Pow(d,2.0); </code></pre> <p>is more accurate than </p> <pre><code>double dSqrd = d * d; // Here we can lose precision </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/199269#199269 5 Answer by Jan Bannister for Hidden Features of C#? Jan Bannister 2008-10-13T22:32:10Z 2009-09-10T20:03:46Z <p>You can switch on string!</p> <pre><code>switch(name) { case "Dave": return true; case "Bob": return false; default: throw new ApplicationException(); } </code></pre> <p>Very handy! and a lot cleaner than a bunch of if-else statements</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/212905#212905 17 Answer by Cristian Libardo for Hidden Features of C#? Cristian Libardo 2008-10-17T16:41:51Z 2008-10-17T16:41:51Z <p>Just learned, anonymous types can infer property names from the variable name:</p> <pre><code>string hello = "world"; var o = new { hello }; Console.WriteLine(o.hello); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/214951#214951 30 Answer by Mike Two for Hidden Features of C#? Mike Two 2008-10-18T11:54:28Z 2009-09-12T19:52:54Z <p>More of a runtime feature, but I recently learned that there are two garbage collectors. The workstation gc and the server gc. Workstation is the default on client versions of windows, but server is much faster on multicore machines.</p> <pre><code> &lt;configuration&gt; &lt;runtime&gt; &lt;gcServer enabled="true"/&gt; &lt;/runtime&gt; &lt;/configuration&gt; </code></pre> <p>Be careful. The server gc requires more memory.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/223087#223087 1 Answer by JettGeek for Hidden Features of C#? JettGeek 2008-10-21T19:08:37Z 2008-10-21T19:08:37Z <p>This may be pretty basic to database application developers, but it took me a while to realize that null is not the same as DBNull.value. </p> <p>You have to use DBNull.value when you want to see if a value from a database record is null.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/236173#236173 2 Answer by splattne for Hidden Features of C#? splattne 2008-10-25T09:53:31Z 2008-10-25T09:59:34Z <h2>Object.ReferenceEquals Method</h2> <p>Determines whether the specified Object instances are the same instance.</p> <p><strong>Parameters:</strong></p> <ul> <li>objA: System.Object - The first Object to compare. </li> <li>objB: System.Object - The second Object to compare. </li> </ul> <p><strong>Example:</strong></p> <pre><code> object o = null; object p = null; object q = new Object(); Console.WriteLine(Object.ReferenceEquals(o, p)); p = q; Console.WriteLine(Object.ReferenceEquals(p, q)); Console.WriteLine(Object.ReferenceEquals(o, p)); </code></pre> <p><strong>Difference to "==" and ".Equals":</strong></p> <p>Basically, Equals() tests of object A has the same content as object B.</p> <p>The method System.Object.ReferenceEquals() always compares references. Although a class can provide its own behavior for the equality operator (below), that re-defined operator isn't invoked if the operator is called via a reference to System.Object. </p> <p>For strings there isn't really a difference, because both == and Equals have been overriden to compare the content of the string.</p> <p>See also <a href="http://stackoverflow.com/questions/73713/how-do-i-check-for-nulls-in-an-operator-overload-without-infinite-recursion#73732">this answer</a> to another question ("How do I check for nulls in an ‘==’ operator overload without infinite recursion?").</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/238462#238462 29 Answer by Dmitri Nesteruk for Hidden Features of C#? Dmitri Nesteruk 2008-10-26T19:04:33Z 2008-10-26T19:04:33Z <p>Mixins. Basically, if you want to add a feature to several files, but cannot use one base class for all, get each class to implement an interface (with no members). Then, write an extension method <strong>for the interface</strong>, i.e.</p> <pre><code>public static DeepCopy(this IPrototype p) { ... } </code></pre> <p>Of course, some clarity is sacrificed. But it works!</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/256013#256013 1 Answer by dviljoen for Hidden Features of C#? dviljoen 2008-11-01T19:48:28Z 2008-11-01T19:48:28Z <p>ThreadStaticAttribute is a favorite of mine. Also, NonSerializableAttribute is useful. (Can you tell I do a lot of server stuff using remoting?)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/258982#258982 3 Answer by Johan S for Hidden Features of C#? Johan S 2008-11-03T15:26:12Z 2008-11-03T15:26:12Z <p>The generic event handler:</p> <pre><code>public event EventHandler&lt;MyEventArgs&gt; MyEvent; </code></pre> <p>This way you don't have to declare your own delegates all the time,</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/259028#259028 1 Answer by Dan Fleet for Hidden Features of C#? Dan Fleet 2008-11-03T15:42:24Z 2008-11-03T15:42:24Z <p>Just learned the joys of <code>[UnmanagedFunctionPointerAttribute(CallingConvention.CDecl)]</code> from trying to interface with an unmanaged C++ function library that defined callbacks without __stdcall.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/259134#259134 2 Answer by LFSR Consulting for Hidden Features of C#? LFSR Consulting 2008-11-03T16:16:07Z 2008-11-03T16:16:07Z <p>I didn't discover - for almost a year - that Strongly Typed DataRows contain an Is[ColumnName]Null() method.</p> <p>For example:</p> <pre><code>Units.UnitsDataTable dataTable = new Units.UnitsDataTable(); foreach (Units.UnitsRow row in dataTable.Rows) { if (row.IsPrimaryKeyNull()) //.... if (row.IsForeignKeyNull()) //.... } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/263868#263868 2 Answer by Cohen for Hidden Features of C#? Cohen 2008-11-04T23:24:03Z 2009-03-25T12:09:42Z <p>Math.Max and Min to check boundaries: I 've seen this in a lot of code:</p> <pre><code>if (x &lt; lowerBoundary) { x = lowerBoundary; } </code></pre> <p>I find this smaller, cleaner and more readable:</p> <pre><code>x = Math.Max(x, lowerBoundary); </code></pre> <p>Or you can also use a ternary operator:</p> <pre><code>x = ( x &lt; lowerBoundary) ? lowerBoundary : x; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/263883#263883 6 Answer by Cohen for Hidden Features of C#? Cohen 2008-11-04T23:30:41Z 2008-11-04T23:30:41Z <p>Something I missed for a long time: you can compare strings with </p> <pre><code>"string".equals("String", StringComparison.InvariantCultureIgnoreCase) </code></pre> <p>instead of doing: </p> <pre><code>"string".ToLower() == "String".ToLower(); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/270430#270430 3 Answer by Dmitri Nesteruk for Hidden Features of C#? Dmitri Nesteruk 2008-11-06T21:47:46Z 2008-11-06T21:47:46Z <p>Mixins are a nice feature. Basically, mixins let you have concrete code for an interface instead of a class. Then, just implement the interface in a bunch of classes, and you automatically get mixin functionality. For example, to mix in deep copying into several classes, define an interface</p> <pre><code>internal interface IPrototype&lt;T&gt; { } </code></pre> <p>Add functionality for this interface</p> <pre><code>internal static class Prototype { public static T DeepCopy&lt;T&gt;(this IPrototype&lt;T&gt; target) { T copy; using (var stream = new MemoryStream()) { var formatter = new BinaryFormatter(); formatter.Serialize(stream, (T)target); stream.Seek(0, SeekOrigin.Begin); copy = (T) formatter.Deserialize(stream); stream.Close(); } return copy; } } </code></pre> <p>Then implement interface in any type to get a mixin.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/292258#292258 1 Answer by Bryan Watts for Hidden Features of C#? Bryan Watts 2008-11-15T07:14:26Z 2008-11-15T07:14:26Z <p>ViewState getters can be one-liners.</p> <p><strong>Using a default value:</strong></p> <pre><code>public string Caption { get { return (string) (ViewState["Caption"] ?? "Foo"); } set { ViewState["Caption"] = value; } } public int Index { get { return (int) (ViewState["Index"] ?? 0); } set { ViewState["Index"] = value; } } </code></pre> <p><strong>Using null as the default:</strong></p> <pre><code>public string Caption { get { return (string) ViewState["Caption"]; } set { ViewState["Caption"] = value; } } public int? Index { get { return (int?) ViewState["Index"]; } set { ViewState["Index"] = value; } } </code></pre> <p>This works for anything backed by a dictionary.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/295174#295174 3 Answer by Eyvind for Hidden Features of C#? Eyvind 2008-11-17T09:28:42Z 2008-11-17T09:28:42Z <p>@Andreas H.R. Nilsson regarding foreach: It does not use 'duck typing', as duck typing IMO refers to a runtime check. It uses <em>structural type checking</em> (as opposed to nominal) at compile time to check for the required method in the type. (Sorry for the new post, I don't have enough points to post comments directly to posts yet.)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/298424#298424 0 Answer by enba for Hidden Features of C#? enba 2008-11-18T10:54:30Z 2008-11-18T10:54:30Z <p><a href="http://stackoverflow.com/questions/169276/is-the-region-directive-really-useful-in-net#287438">Here is a TIP</a> of how you can use #Region directive to document your code.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/299153#299153 3 Answer by Bryan Watts for Hidden Features of C#? Bryan Watts 2008-11-18T15:52:15Z 2008-11-18T15:52:15Z <p>(I just used this one) Set a field null and return it without an intermediate variable:</p> <pre><code>try { return _field; } finally { _field = null; } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/299173#299173 2 Answer by Rytmis for Hidden Features of C#? Rytmis 2008-11-18T15:56:03Z 2008-11-18T15:56:03Z <p><a href="http://msdn.microsoft.com/en-us/library/aa664591(VS.71).aspx" rel="nofollow">Explicit interface member implementation</a>, wherein an interface member is implemented, but hidden unless the instance is cast to the interface type. </p> http://stackoverflow.com/questions/9033/hidden-features-of-c/299236#299236 17 Answer by Bryan Watts for Hidden Features of C#? Bryan Watts 2008-11-18T16:16:26Z 2008-11-18T16:23:10Z <p>On-demand field initialization in one line:</p> <pre><code>public StringBuilder Builder { get { return _builder ?? (_builder = new StringBuilder()); } } </code></pre> <p>I'm not sure how I feel about C# supporting assignment expressions, but hey, it's there :-)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/300100#300100 11 Answer by open-collar for Hidden Features of C#? open-collar 2008-11-18T20:51:07Z 2008-11-18T20:51:07Z <p>Several people have mentioned <em>using</em> blocks, but I think they are much more useful than people have realised. Think of them as the poor man's AOP tool. I have a host of simple objects that capture state in the constructor and then restore it in the <em>Dispose()</em> method. That allows me to wrap a piece of functionality in a <em>using</em> block and be sure that the state is restore at the end. For example:</p> <pre><code>using(new CursorState(this, BusyCursor)); { // Do stuff } </code></pre> <p><em>CursorState</em> captures the current cursor being used by form, then sets the form to use the cursor supplied. At the end it restores the original cursor. I do loads of things like this, for example capturing the selections and current row on a grid before refreshing and so on.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/302484#302484 8 Answer by Tor Haugen for Hidden Features of C#? Tor Haugen 2008-11-19T16:28:25Z 2009-09-12T20:46:26Z <p>You can use any Unicode character in C# names, for example:</p> <pre><code>public class MyClass { public string Hårføner() { return "Yes, it works!"; } } </code></pre> <p>You can even use Unicode escapes. This one is equivalent to the above:</p> <pre><code>public class MyClass { public string H\u00e5rføner() { return "Yes, it (still) works!"; } } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/302602#302602 7 Answer by MysticSlayer for Hidden Features of C#? MysticSlayer 2008-11-19T16:58:38Z 2009-09-27T20:20:32Z <p>What about using this:</p> <pre><code>#if DEBUG Console.Write("Debugging"); #else Console.Write("Final"); #endif </code></pre> <p>When you have your solution compiled with DEBUG defined it will output "Debugging".</p> <p>If your compile is set to Release it will write "Final".</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/312756#312756 2 Answer by Gregor for Hidden Features of C#? Gregor 2008-11-23T17:45:14Z 2008-11-23T17:45:14Z <p><strong>Framework Feature</strong></p> <p>I don't know but I was quite suprised about <a href="http://msdn.microsoft.com/de-de/library/system.windows.forms.visualstyles.visualstylerenderer(VS.85).aspx" rel="nofollow">VisualStyleRenderer</a> and the whole <a href="http://msdn.microsoft.com/de-de/library/system.windows.forms.visualstyles(VS.85).aspx" rel="nofollow">System.Windows.Forms.VisualStyles-Namespace</a>. Pretty cool!</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/314065#314065 5 Answer by Richard E for Hidden Features of C#? Richard E 2008-11-24T12:51:58Z 2008-11-24T12:51:58Z <p><code>IEnumerable</code>'s <code>SelectMany</code>, which flattens a list of lists into a single list. Let's say I have a list of <code>Orders</code>, and each <code>Order</code> has a list of <code>LineItems</code> on that order.</p> <p>I want to know the total number of <code>LineItems</code> sold... </p> <pre><code>int totalItems = Orders.Select(o =&gt; o.LineItems).SelectMany(i =&gt; i).Sum(); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/319182#319182 4 Answer by Rob for Hidden Features of C#? Rob 2008-11-25T22:53:40Z 2008-11-25T22:53:40Z <p>This isn't a C# specific type, but I just found the ISurrogateSelector and ISerializationSurrogate interfaces --</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.isurrogateselector.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.runtime.serialization.isurrogateselector.aspx</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.isurrogateselector.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.runtime.serialization.isurrogateselector.aspx</a></p> <p>Using these in conjunction with the BinaryFormatter allows for non-serializable objects to be serialized via the implementation of a surrogate class. The surrogate pattern is well-understood in computer science, particularly when dealing with the problem of serialization. I think that this implementation is just tucked away as a parameter of the constructor to BinaryFormatter, and that's too bad.</p> <p>Still - VERY hidden. :)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/336237#336237 5 Answer by Phillip Ngan for Hidden Features of C#? Phillip Ngan 2008-12-03T04:45:34Z 2008-12-03T04:45:34Z <p>The delegate syntax have evolved over successive versions of C#, but I still find them difficult to remember. Fortunately the <code>Action&lt;&gt;</code> and <code>Func&lt;&gt;</code> delegates are easy to remember.</p> <p>For example:</p> <ul> <li><code>Action&lt;int&gt;</code> is a delegate method that takes a single int argument and returns void.</li> <li><code>Func&lt;int&gt;</code> is a delegate method that takes no arguments and returns an int.</li> <li><code>Func&lt;int, bool&gt;</code> is a delegate method that takes a single int argument and returns a bool.</li> </ul> <p>These features were introduced in version 3.5 of the .Net framework.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/343526#343526 10 Answer by pbr.bhakta for Hidden Features of C#? pbr.bhakta 2008-12-05T11:10:09Z 2009-07-23T18:47:30Z <p>One great class I like is <code>System.Xml.XmlConvert</code> which can be used to read values from xml tag. Especially, if I am reading a boolean value from xml attribute or element, I use </p> <pre><code>bool myFlag = System.Xml.XmlConvert.ToBoolean(myAttribute.Value); </code></pre> <p>Note: since boolean type in xml accepts 1 and 0 in addition to "true" and "false" as valid values, using string comparison in this case is error-prone.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/355991#355991 23 Answer by Binoj Antony for Hidden Features of C#? Binoj Antony 2008-12-10T13:11:49Z 2009-09-27T19:32:47Z <p>Other underused operators are <code>checked</code> and <code>unchecked</code>:</p> <pre><code>short x = 32767; // 32767 is the max value for short short y = 32767; int z1 = checked((short)(x + y)); //will throw an OverflowException int z2 = unchecked((short)(x + y)); // will return -2 int z3 = (short)(x + y); // will return -2 </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/365801#365801 6 Answer by Binoj Antony for Hidden Features of C#? Binoj Antony 2008-12-13T21:53:01Z 2008-12-13T21:53:01Z <p>To call the base class constructor just put base() inline with the constructor.<br /> To call the base class method you can just put base.MethodName() inside the derived class method</p> <pre><code>class ClassA { public ClassA(int a) { //Do something } public void Method1() { //Do Something } } class ClassB : ClassA { public ClassB(int a) : base(a) // calling the base class constructor { //Do something } public void Method2() { base.Method1(); // calling the base class method } } </code></pre> <p>Of course you can call the methods of the base class by just saying <code>base.MethodName()</code></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/368625#368625 4 Answer by amazedsaint for Hidden Features of C#? amazedsaint 2008-12-15T15:03:09Z 2008-12-15T15:03:09Z <p><strong>dynamic keyword in C# 4.0</strong></p> <p>You can use dynamic keyword, if you want your method calls to be resolved only at the runtime. </p> <pre><code>dynamic invoker=new DynamicInvoker(); dynamic result1=invoker.MyMethod1(); dynamic result2=invoker.MyMethod2(); </code></pre> <p>Here I'm implementing a dynamic invoker.</p> <pre><code>public class DynamicInvoker : IDynamicObject { public MetaObject GetMetaObject (System.Linq.Expressions.Expression parameter) { return new DynamicReaderDispatch (parameter); } } public class DynamicDispatcher : MetaObject { public DynamicDispatcher (Expression parameter) : base(parameter, Restrictions.Empty){ } public override MetaObject Call(CallAction action, MetaObject[] args) { //You'll get MyMethod1 and MyMethod2 here (and what ever you call) Console.WriteLine("Logic to invoke Method '{0}'", action.Name); return this; //Return a meta object } } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/370561#370561 9 Answer by Rinat Abdullin for Hidden Features of C#? Rinat Abdullin 2008-12-16T06:07:30Z 2008-12-16T06:07:30Z <p>Ability to use LINQ Expressions to perform strongly-typed reflection:</p> <pre><code>static void Main(string[] args) { var domain = "matrix"; Check(() =&gt; domain); Console.ReadLine(); } static void Check&lt;T&gt;(Expression&lt;Func&lt;T&gt;&gt; expr) { var body = ((MemberExpression)expr.Body); Console.WriteLine("Name is: {0}", body.Member.Name); Console.WriteLine("Value is: {0}", ((FieldInfo)body.Member) .GetValue(((ConstantExpression)body.Expression).Value)); } // output: // Name is: 'domain' // Value is: 'matrix' </code></pre> <p>More details are available at <a href="http://rabdullin.com/journal/2008/12/13/how-to-find-out-variable-or-parameter-name-in-c.html" rel="nofollow">How to Find Out Variable or Parameter Name in C#?</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/372964#372964 4 Answer by Steven Behnke for Hidden Features of C#? Steven Behnke 2008-12-16T22:16:59Z 2008-12-16T22:16:59Z <p>This isn't a C# specific feature but it is an addon that I find very useful. It is called the Resource Refactoring Tool. It allows you to right click on a literal string and extract it into a resource file. It will search the code and find any other literal strings that match and replace it with the same resource from the Resx file.</p> <p><a href="http://www.codeplex.com/ResourceRefactoring" rel="nofollow">http://www.codeplex.com/ResourceRefactoring</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/388760#388760 4 Answer by Moran for Hidden Features of C#? Moran 2008-12-23T12:27:07Z 2008-12-23T12:27:07Z <p>TrueForAll Method of <code>List&lt;T&gt;</code> :</p> <pre><code>List&lt;int&gt; s = new List&lt;int&gt; { 6, 1, 2 }; bool a = s.TrueForAll(p =&gt; p &gt; 0); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/391966#391966 15 Answer by Michael Meadows for Hidden Features of C#? Michael Meadows 2008-12-24T18:10:36Z 2009-04-02T11:28:27Z <h2>Closures</h2> <p>Since anonymous delegates were added to 2.0, we have been able to develop closures. They are rarely used by programmers but provide great benefits such as immediate code reuse. Consider this piece of code:</p> <pre><code>bool changed = false; if (model.Prop1 != prop1) { changed = true; model.Prop1 = prop1; } if (model.Prop2 != prop2) { changed = true; model.Prop2 = prop2; } // ... etc. </code></pre> <p>Note that the if-statements above perform similar pieces of code with the exception of one line of code, i.e. setting different properties. This can be shortened with the following, where the varying line of code is entered as a parameter to an <code>Action</code> object, appropriately named <code>setAndTagChanged</code>:</p> <pre><code>bool changed = false; Action&lt;Action&gt; setAndTagChanged = (action) =&gt; { changed = true; action(); }; if (model.Prop1 != prop1) setAndTagChanged(model.Prop1 = prop1); if (model.Prop2 != prop2) setAndTagChanged(model.Prop2 = prop2); </code></pre> <p>In the second case, the closure allows you to scope the <code>change</code> variable in your lambda, which is a concise way to approach this problem.</p> <p>An alternate way is to use another unused feature, the "or equal" binary assignment operator. The following code shows how:</p> <pre><code>private bool conditionalSet(bool condition, Action action) { if (condition) action(); return condition; } // ... bool changed = false; changed |= conditionalSet(model.Prop1 == prop1, model.Prop1 = prop1); changed |= conditionalSet(model.Prop2 == prop2, model.Prop2 = prop2); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/399297#399297 3 Answer by TheUberOverLord for Hidden Features of C#? TheUberOverLord 2008-12-30T01:40:37Z 2008-12-30T01:45:51Z <p>I call this AutoDebug because you can drop right into debug where and when you need based on a bool value which could also be stored as a project user setting as well.</p> <p>Example:</p> <pre><code>//Place at top of your code public UseAutoDebug = true; //Place anywhere in your code including catch areas in try/catch blocks Debug.Assert(!this.UseAutoDebug); </code></pre> <p>Simply place the above in try/catch blocks or other areas of your code and set UseAutoDebug to true or false and drop into debug anytime you wish for testing.</p> <p>You can leave this code in place and toggle this feature on and off when testing, You can also save it as a Project Setting, and manually change it after deployment to get additional bug information from users when/if needed as well.</p> <p>You can see a functional and working example of using this technique in this Visual Studio C# Project Template here, where it is used heavily:</p> <p><a href="http://code.msdn.microsoft.com/SEHE" rel="nofollow">http://code.msdn.microsoft.com/SEHE</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/405088#405088 10 Answer by Mark Cidade for Hidden Features of C#? Mark Cidade 2009-01-01T16:10:01Z 2009-01-01T16:10:01Z <p><strong>C# 3.0's LINQ query comprehensions are full-blown monadic comprehensions</strong> <em>a la</em> Haskell (in fact they were designed by one of Haskell's designers). They will work for any generic type that follows the "LINQ pattern" and allows you to write in a pure monadic functional style, which means that all of your variables are immutable (as if the only variables you used were <code>IDisposable</code>s and <code>IEnumerable</code>s in <em>using</em> and <em>foreach</em> statements). This is helpful for keeping variable declarations close to where they're used and making sure that all side-effects are explicitly declared, if there are any at all.</p> <pre><code> interface IFoo&lt;T&gt; { T Bar {get;} } class MyFoo&lt;T&gt; : IFoo&lt;T&gt; { public MyFoo(T t) {Bar = t;} public T Bar {get; private set;} } static class Foo { public static IFoo&lt;T&gt; ToFoo&lt;T&gt;(this T t) {return new MyFoo&lt;T&gt;(t);} public static void Do&lt;T&gt;(this T t, Action&lt;T&gt; a) { a(t);} public static IFoo&lt;U&gt; Select&lt;T,U&gt;(this IFoo&lt;T&gt; foo, Func&lt;T,U&gt; f) { return f(foo.Bar).ToFoo(); } } /* ... */ using (var file = File.OpenRead("objc.h")) { var x = from f in file.ToFoo() let s = new Scanner(f) let p = new Parser {scanner = s} select p.Parse(); x.Do(p =&gt; { /* drop into imperative code to handle file in Foo monad if necessary */ }); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/407325#407325 12 Answer by HBoss for Hidden Features of C#? HBoss 2009-01-02T16:26:32Z 2009-01-02T16:26:32Z <p>I'd say using certain system classes for extension methods is very handy, for example System.Enum, you can do something like below...</p> <pre><code>[Flags] public enum ErrorTypes : int { None = 0, MissingPassword = 1, MissingUsername = 2, PasswordIncorrect = 4 } public static class EnumExtensions { public T Append&lt;T&gt;(this System.Enum type, T value) { return (T)(object)(((int)(object)type | (int)(object)value)); } public static T Remove&lt;T&gt;(this System.Enum type, T value) { return (T)(object)(((int)(object)type &amp; ~(int)(object)value)); } public static bool Has&lt;T&gt;(this System.Enum type, T value) { return (((int)(object)type &amp; (int)(object)value) == (int)(object)value); } } ... //used like the following... ErrorTypes error = ErrorTypes.None; error = error.Append(ErrorTypes.MissingUsername); error = error.Append(ErrorTypes.MissingPassword); error = error.Remove(ErrorTypes.MissingUsername); //then you can check using other methods if (error.Has(ErrorTypes.MissingUsername)) { ... } </code></pre> <p>This is just an example of course - the methods could use a little more work...</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/475559#475559 4 Answer by JohnOpincar for Hidden Features of C#? JohnOpincar 2009-01-24T05:22:17Z 2009-01-24T05:22:17Z <p>You can have generic methods in a non-generic class.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/498292#498292 4 Answer by Andrew Peters for Hidden Features of C#? Andrew Peters 2009-01-31T04:50:20Z 2009-07-23T18:51:26Z <p>Cool trick to emulate functional "wildcard" arguments (like '_' in Haskell) when using lambdas:</p> <pre><code>(_, b, __) =&gt; b.DoStuff(); // only interested in b here </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/508371#508371 1 Answer by Rene Stein for Hidden Features of C#? Rene Stein 2009-02-03T18:42:13Z 2009-07-23T18:57:09Z <p>Only for reference - enum binary operations using the extension method.</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Linq.Expressions; namespace BinaryOpGenericTest { [Flags] enum MyFlags { A = 1, B = 2, C = 4 } static class EnumExtensions { private static Dictionary&lt;Type, Delegate&gt; m_operations = new Dictionary&lt;Type, Delegate&gt;(); public static bool IsFlagSet&lt;T&gt;(this T firstOperand, T secondOperand) where T : struct { Type enumType = typeof(T); if (!enumType.IsEnum) { throw new InvalidOperationException("Enum type parameter required"); } Delegate funcImplementorBase = null; m_operations.TryGetValue(enumType, out funcImplementorBase); Func&lt;T, T, bool&gt; funcImplementor = funcImplementorBase as Func&lt;T, T, bool&gt;; if (funcImplementor == null) { funcImplementor = buildFuncImplementor(secondOperand); } return funcImplementor(firstOperand, secondOperand); } private static Func&lt;T, T, bool&gt; buildFuncImplementor&lt;T&gt;(T val) where T : struct { var first = Expression.Parameter(val.GetType(), "first"); var second = Expression.Parameter(val.GetType(), "second"); Expression convertSecondExpresion = Expression.Convert(second, typeof(int)); var andOperator = Expression.Lambda&lt;Func&lt;T, T, bool&gt;&gt;(Expression.Equal( Expression.And( Expression.Convert(first, typeof(int)), convertSecondExpresion), convertSecondExpresion), new[] { first, second }); Func&lt;T, T, bool&gt; andOperatorFunc = andOperator.Compile(); m_operations[typeof(T)] = andOperatorFunc; return andOperatorFunc; } } class Program { static void Main(string[] args) { MyFlags flag = MyFlags.A | MyFlags.B; Console.WriteLine(flag.IsFlagSet(MyFlags.A)); Console.WriteLine(EnumExtensions.IsFlagSet(flag, MyFlags.C)); Console.ReadLine(); } } } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/593134#593134 3 Answer by Jonathan Parker for Hidden Features of C#? Jonathan Parker 2009-02-27T00:45:20Z 2009-02-27T00:45:20Z <p>Method groups aren't well known.</p> <p>Given:</p> <pre><code>Func&lt;Func&lt;int,int&gt;,int,int&gt; myFunc1 = (i, j) =&gt; i(j); Func&lt;int, int&gt; myFunc2 = i =&gt; i + 2; </code></pre> <p>You can do this:</p> <pre><code>var x = myFunc1(myFunc2, 1); </code></pre> <p>instead of this:</p> <pre><code>var x = myFunc1(z =&gt; myFunc2(z), 1); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/618582#618582 7 Answer by tuinstoel for Hidden Features of C#? tuinstoel 2009-03-06T11:49:20Z 2009-03-06T11:49:20Z <p>You can use generics to check (compile time) if a method argument implements two interfaces:</p> <pre><code>interface IPropA { string PropA { get; set; } } interface IPropB { string PropB { get; set; } } class TestClass { void DoSomething&lt;T&gt;(T t) where T : IPropA, IPropB { MessageBox.Show(t.PropA); MessageBox.Show(t.PropB); } } </code></pre> <p>Same with an argument that is inherited from a base class and an interface. </p> http://stackoverflow.com/questions/9033/hidden-features-of-c/637760#637760 2 Answer by kentaromiura for Hidden Features of C#? kentaromiura 2009-03-12T08:46:23Z 2009-03-12T08:46:23Z <p>Is constructor chain already cited?</p> <pre><code>namespace constructorChain { using System; public class Class1 { public string x; public string y; public Class1() { x = "class1"; y = ""; } public Class1(string y) : this() { this.y = y; } } public class Class2 : Class1 { public Class2(int y) : base(y.ToString()) { } } } </code></pre> <p>...</p> <pre><code> constructorChain.Class1 c1 = new constructorChain.Class1(); constructorChain.Class1 c12 = new constructorChain.Class1("Hello, Constructor!"); constructorChain.Class2 c2 = new constructorChain.Class2(10); Console.WriteLine("{0}:{1}", c1.x, c1.y); Console.WriteLine("{0}:{1}", c12.x, c12.y); Console.WriteLine("{0}:{1}", c2.x, c2.y); Console.ReadLine(); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/699973#699973 -2 Answer by Raghu Dodda for Hidden Features of C#? Raghu Dodda 2009-03-31T04:18:58Z 2009-05-13T05:45:30Z <p>Not hidden, but pretty neat. I find this a more succinct substitute for a simple if-then-else that just assigns a value based on a condition.</p> <pre><code>string result = i &lt; 2 ? //question "less than 2" : //answer i &lt; 5 ? //question "less than 5": //answer i &lt; 10 ? //question "less than 10": //answer "something else"; //default answer </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/707480#707480 3 Answer by DSO for Hidden Features of C#? DSO 2009-04-01T21:50:41Z 2009-04-01T21:50:41Z <p>Here's one I discovered recently which has been useful:</p> <pre><code>Microsoft.VisualBasic.Logging.FileLogTraceListener </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.logging.filelogtracelistener.aspx" rel="nofollow">MSDN Link</a></p> <p>This is a TraceListener implementation which has a lot of features, such as automatic log file roll over, which I previously would use a custom logging framework for. The nice thing is that it is a core part of .NET and is integrated with the Trace framework, so its easy to pick up and use immediately.</p> <p>This is "hidden" because its in the Microsoft.VisualBasic assembly... but you can use it from C# as well.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/709198#709198 4 Answer by Waleed Eissa for Hidden Features of C#? Waleed Eissa 2009-04-02T10:35:23Z 2009-09-27T19:43:53Z <p>Working with enums.</p> <p>Convert a string to an Enum:</p> <pre><code>enum MyEnum { FirstValue, SecondValue, ThirdValue } string enumValueString = "FirstValue"; MyEnum val = (MyEnum)Enum.Parse(typeof(MyEnum), enumValueString, true) </code></pre> <ul> <li>I use this to load the value of CacheItemPriority in my ASP.NET applications from a settings table in a database so that I can control caching (along with other settings) dynamically without taking the application down.</li> </ul> <p>When comparing variables of type enum, you don't have to cast to int:</p> <pre><code>MyEnum val = MyEnum.SecondValue; if (val &lt; MyEnum.ThirdValue) { // Do something } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/710507#710507 6 Answer by Gorkem Pacaci for Hidden Features of C#? Gorkem Pacaci 2009-04-02T16:30:33Z 2009-04-02T16:30:33Z <p>I quite enjoy implicit generic parameters on functions. For example, if you have:</p> <pre><code>public void DoStuff&lt;T&gt;(T value); </code></pre> <p>Instead of calling it like this:</p> <pre><code>DoStuff&lt;int&gt;(5); </code></pre> <p>You can:</p> <pre><code>DoStuff(5); </code></pre> <p>And it'll work out the generic type from the parameter's type. </p> <ul> <li>This doesn't work if you're calling the method through reflection.</li> <li>I remember having some weird problems on Mono.</li> </ul> http://stackoverflow.com/questions/9033/hidden-features-of-c/749846#749846 25 Answer by Ralph for Hidden Features of C#? Ralph 2009-04-15T00:23:53Z 2009-04-15T00:23:53Z <p>Many people don't realize that they can compare strings using: OrdinalIgnoreCase instead of having to do someString.ToUpper(). This removes the additional string allocation overhead.</p> <pre><code>if( myString.ToUpper() == theirString.ToUpper() ){ ... } </code></pre> <p>becomes</p> <pre><code>if( myString.Equals( theirString, StringComparison.OrdinalIgnoreCase ){ ... } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/759323#759323 9 Answer by Peter Lillevold for Hidden Features of C#? Peter Lillevold 2009-04-17T07:09:13Z 2009-04-17T07:09:13Z <p>My favorite attribute: <a href="http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.internalsvisibletoattribute.aspx" rel="nofollow">InternalsVisibleTo</a></p> <p>At assembly level you can declare that another assembly can see your internals. For testing purposes this is absolutely wonderful. </p> <p>Stick this in your AssemblyInfo.cs or equivalent and your test assembly get full access to all the internal stuff that requires testing.</p> <pre><code>[assembly: InternalsVisibleTo("MyLibrary.Test, PublicKey=0024...5c042cb")] </code></pre> <p>As you can see, the test assembly must have <a href="http://msdn.microsoft.com/en-us/library/xc31ft41.aspx" rel="nofollow">a strong name</a> to gain the trust of the assembly under test.</p> <p>Available in .Net Framework 2.0+, Compact Framework 2.0+ and XNA Framework 1.0+.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/781561#781561 1 Answer by Akash Kava for Hidden Features of C#? Akash Kava 2009-04-23T12:57:48Z 2009-04-23T12:57:48Z <blockquote> <p><strong>FIXED</strong> / Power of Pointers in C# - This topic is too big, but I will just outline simple things.</p> </blockquote> <p>In C we had facility of loading structure like...</p> <pre><code>struct cType{ char type[4]; int size; char name[50]; char email[100]; } cType myType; fread(file, &amp;mType, sizeof(mType)); </code></pre> <p>We can use fixed keyword in "unsafe" method to read byte array aligned structure.</p> <pre><code>[Layout(LayoutKind.Sequential, Pack=1)] public unsafe class CType{ public fixed byte type[4]; public int size; public fixed byte name[50]; public fixed byte email[100]; } </code></pre> <p>Method 1 (Reading from regular stream in to byte buffer and mapping byte array to individual bytes of struct)</p> <pre><code>CType mType = new CType(); byte[] buffer = new byte[Marshal.SizeOf(CType)]; stream.Read(buffer,0,buffer.Length); // you can map your buffer back to your struct... fixed(CType* sp = &amp;mType) { byte* bsp = (byte*) sp; fixed(byte* bp = &amp;buffer) { for(int i=0;i&lt;buffer.Length;i++) { (*bsp) = (*bp); bsp++;bp++; } } } </code></pre> <p>Method 2, you can map Win32 User32.dll's ReadFile to directly read bytes...</p> <pre><code>CType mType = new CType(); fixed(CType* p = &amp;mType) { User32.ReadFile(fileHandle, (byte*) p, Marshal.SizeOf(mType),0); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/791096#791096 3 Answer by Elroy for Hidden Features of C#? Elroy 2009-04-26T16:11:10Z 2009-04-26T16:11:10Z <p>The usage of the default keyword in generic code to return the default value for a type.</p> <pre><code>public class GenericList&lt;T&gt; { private class Node { //... public Node Next; public T Data; } private Node head; //... public T GetNext() { T temp = default(T); Node current = head; if (current != null) { temp = current.Data; current = current.Next; } return temp; } } </code></pre> <p><a href="http://stackoverflow.com/questions/367378/returning-a-default-value-c">Another example here</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/794343#794343 2 Answer by Dries Van Hansewijck for Hidden Features of C#? Dries Van Hansewijck 2009-04-27T16:46:52Z 2009-04-27T16:46:52Z <p>The InternalsVisibleToAttribute specifies that types that are ordinarily visible only within the current assembly are visible to another assembly. <a href="http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.internalsvisibletoattribute.aspx" rel="nofollow" title="InternalsVisibleToAttribute class">Article on msdn</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/821718#821718 2 Answer by rein for Hidden Features of C#? rein 2009-05-04T19:57:08Z 2009-05-04T19:57:08Z <p>Instead of doing something cheesy like this:</p> <pre><code>Console.WriteLine("{0} item(s) found.", count); </code></pre> <p>I use the following inline trick:</p> <pre><code>Console.WriteLine("{0} item{1} found.", count, count==1 ? "" : "s"); </code></pre> <p>This will display "item" when there's one item or "items" when there are more (or less) than 1. Not much effort for a little bit of professionalism.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/840445#840445 6 Answer by impulse3d for Hidden Features of C#? impulse3d 2009-05-08T15:35:04Z 2009-05-08T15:35:04Z <p>One thing not many people know about are some of the C#-introduced preprocessor directives. You can use <code>#error This is an error.</code> to generate a compiler error and <code>#warning This is a warning.</code></p> <p>I usually use these when I'm developing with a top-down approach as a "todo" list. I'll <code>#error Implement this function</code>, or <code>#warning Eventually implement this corner case</code> as a reminder.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/840998#840998 1 Answer by Drew Hoskins for Hidden Features of C#? Drew Hoskins 2009-05-08T17:43:21Z 2009-05-08T17:51:17Z <p>In dealing with interop between C++ and C#, many people don't realize that C++/CLI is a great option.</p> <p>Say you have a C++ DLL and a C# DLL which depends on the C++ DLL. Often, the easiest technique is to compile some (or all) modules of the C++ DLL with the /clr switch. To have the C# call the C++ DLL is to write managed C++ wrapper classes in the C++ DLL. The C++/CLI classes can call the native C++ code much more seamlessly than C#, because the C++ compiler will automatically generate P/invokes for you, has a library specifically for interop, plus language features for interop like <a href="http://msdn.microsoft.com/en-us/library/1dz8byfh%28VS.80%29.aspx" rel="nofollow">pin_ptr</a>. And it allows managed and native code to coexist within the same binary.</p> <p>On the C# side, you just call into the DLL as you would any other .NET binary.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/841140#841140 3 Answer by Jeff Yates for Hidden Features of C#? Jeff Yates 2009-05-08T18:21:05Z 2009-05-08T18:21:05Z <p>I am so so late to this question, but I wanted to add a few that I don't think have been covered. These aren't C#-specific, but I think they're worthy of mention for any C# developer.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.ambientvalueattribute.aspx" rel="nofollow"><h3>AmbientValueAttribute</h3></a> This is similar to <code>DefaultValueAttribute</code>, but instead of providing the value that a property defaults to, it provides the value that a property uses to decide whether to request its value from somewhere else. For example, for many controls in WinForms, their <code>ForeColor</code> and <code>BackColor</code> properties have an <code>AmbientValue</code> of <code>Color.Empty</code> so that they know to get their colors from their parent control.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.io.isolatedstorage.isolatedstoragesettings%28VS.95%29.aspx" rel="nofollow"><h3>IsolatedStorageSettings</h3></a> This is a Silverlight one. The framework handily includes this sealed class for providing settings persistence at both the per-application and per-site level.</p> <h3>Flag interaction with extension methods</h3> <p>Using extension methods, flag enumeration use can be a lot more readable.</p> <pre><code> public static bool Contains( this MyEnumType enumValue, MyEnumType flagValue) { return ((enumValue &amp; flagValue) == flagValue); } public static bool ContainsAny( this MyEnumType enumValue, MyEnumType flagValue) { return ((enumValue &amp; flagValue) &gt; 0); } </code></pre> <p>This makes checks for flag values nice and easy to read and write. Of course, it would be nicer if we could use generics and enforce T to be an enum, but that isn't allowed. Perhaps <code>dynamic</code> will make this easier.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/862323#862323 3 Answer by Ash for Hidden Features of C#? Ash 2009-05-14T09:05:37Z 2009-05-14T09:05:37Z <p>The built-in (2.0) MethodInvoker delegate is useful when you want to Invoke/BeginInvoke inline code. This avoids needing to create an actual delegate and separate method.</p> <pre><code> void FileMessageEvent(object sender, MessageEventArgs e) { if (this.InvokeRequired == true) { this.BeginInvoke((MethodInvoker)delegate { lblMessage.Text=e.Message; Application.DoEvents(); } ); } } </code></pre> <p>Resolves the error: "Cannot convert anonymous method to type 'System.Delegate' because it is not a delegate type".</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/874167#874167 2 Answer by Josef for Hidden Features of C#? Josef 2009-05-17T08:41:55Z 2009-05-17T08:41:55Z <p>I find it incredible what type of trouble the compiler goes through to sugar code the use of <strong>Outer Variables</strong>:</p> <pre><code>string output = "helo world!"; Action action = () =&gt; Console.WriteLine(output); output = "hello!"; action(); </code></pre> <p>This actually prints <code>hello!</code>. Why? Because the compiler creates a nested class for the delegate, with public fields for all <em>outer variables</em> and inserts setting-code before every single call to the delegate :) Here is above code 'reflectored':</p> <pre><code>Action action; &lt;&gt;c__DisplayClass1 CS$&lt;&gt;8__locals2; CS$&lt;&gt;8__locals2 = new &lt;&gt;c__DisplayClass1(); CS$&lt;&gt;8__locals2.output = "helo world!"; action = new Action(CS$&lt;&gt;8__locals2.&lt;Main&gt;b__0); CS$&lt;&gt;8__locals2.output = "hello!"; action(); </code></pre> <p>Pretty cool I think.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/882100#882100 3 Answer by scraimer for Hidden Features of C#? scraimer 2009-05-19T11:00:33Z 2009-05-19T11:00:33Z <p>I couldn't figure out what use some of the functions in the <code>Convert</code> class had (such as Convert.ToDouble(int), Convert.ToInt(double)) until I combined them with <code>Array.ConvertAll</code>:</p> <pre><code>int[] someArrayYouHaveAsInt; double[] copyOfArrayAsDouble = Array.ConvertAll&lt;int, double&gt;( someArrayYouHaveAsInt, new Converter&lt;int,double&gt;(Convert.ToDouble)); </code></pre> <p>Which avoids the resource allocation issues that arise from defining an inline delegate/closure (and slightly more readable):</p> <pre><code>int[] someArrayYouHaveAsInt; double[] copyOfArrayAsDouble = Array.ConvertAll&lt;int, double&gt;( someArrayYouHaveAsInt, new Converter&lt;int,double&gt;( delegate(int i) { return (double)i; } )); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/883586#883586 3 Answer by JoshL for Hidden Features of C#? JoshL 2009-05-19T15:52:52Z 2009-05-19T15:52:52Z <p>Array initialization without specifying the array element type:</p> <pre><code>var pets = new[] { "Cat", "Dog", "Bird" }; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/899593#899593 1 Answer by Oorang for Hidden Features of C#? Oorang 2009-05-22T19:28:26Z 2009-05-22T19:28:26Z <p>Well... <strong><em>Don't use it</em></strong>, but a lot of people don't know C# supports the evil goto:)</p> <pre><code>static void Example() { int i = 0; top: Console.WriteLine(i.ToString()); if (i == 0) { i++; goto top; } } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/912833#912833 3 Answer by emddudley for Hidden Features of C#? emddudley 2009-05-26T21:23:24Z 2009-05-26T21:23:24Z <p>Having just learned the meaning of invariance, covariance and contravariance, I discovered the <a href="http://msdn.microsoft.com/en-us/library/dd469484%28VS.100%29.aspx" rel="nofollow">in</a> and <a href="http://msdn.microsoft.com/en-us/library/dd469487%28VS.100%29.aspx" rel="nofollow">out</a> generic modifiers that will be included in .NET 4.0. They seem obscure enough that most programmers would not know about them.</p> <p>There's an <a href="http://visualstudiomagazine.com/articles/2009/05/01/generic-covariance-and-contravariance-in-c-40.aspx" rel="nofollow">article</a> at Visual Studio Magazine which discusses these keywords and how they will be used.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/938302#938302 6 Answer by Dave Van den Eynde for Hidden Features of C#? Dave Van den Eynde 2009-06-02T07:20:56Z 2009-06-02T07:20:56Z <p><a href="http://msdn.microsoft.com/en-us/library/b3787ac0.aspx" rel="nofollow">Atrribute Targets</a></p> <p>Everyone has seen one. Basically, when you see this:</p> <pre><code>[assembly: ComVisible(false)] </code></pre> <p>The "assembly:" portion of that attribute is the target. In this case, the attribute is applied to the assembly, but there are others:</p> <pre><code>[return: SomeAttr] int Method3() { return 0; } </code></pre> <p>In this sample the attribute is applied to the return value. </p> http://stackoverflow.com/questions/9033/hidden-features-of-c/945247#945247 1 Answer by Showtime for Hidden Features of C#? Showtime 2009-06-03T14:53:50Z 2009-06-03T14:53:50Z <p>If you want to prevent the garbage collector from running the finalizer of an object, just use <code>GC.SuppressFinalize(object);</code>. In a similar vein, <code>GC.KeepAlive(object);</code> will prevent the garbage collector from collecting that object by referencing it. Not very commonly used, at least in my experience, but nice to know just in case.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/945300#945300 4 Answer by ThePower for Hidden Features of C#? ThePower 2009-06-03T15:03:23Z 2009-06-03T15:03:23Z <p>Properties to display when viewing components Properties in design view:</p> <pre><code>private double _Zoom = 1; [Category("View")] [Description("The Current Zoom Level")] public double Zoom { get { return _Zoom;} set { _Zoom = value;} } </code></pre> <p>Makes things a lot easier for other users of your component libraries.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/945458#945458 1 Answer by Jeffrey Hines for Hidden Features of C#? Jeffrey Hines 2009-06-03T15:37:49Z 2009-06-03T15:37:49Z <p>Relection is so powerfull when used carefully. I used it in an e-mail templating system. The template manager would be passed an object and the html templates would have embedded fields that referred to Properties that could be retrieved off the passed object using reflection. Worked out very nicely.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/949309#949309 1 Answer by RCIX for Hidden Features of C#? RCIX 2009-06-04T08:41:48Z 2009-06-09T22:33:28Z <p>Definitely the Func&lt;> types when used with statement lambdas in .net 3.5. These allow customizable functions, and can be a great aid in offering user customizable objects without subclassing them or resorting to some limited system like keeping track of a variable that lists what button or key the user wants to monitor. Also, they can be called just like regular methods and can be assigned like variables. The only downside that i can think of is that you're limited to 5 arguments! Although by that point you might want to consider a different solution... Edit: Providing some examples.</p> <pre><code>... public Func&lt;InputHelper, float&gt; _horizontalCameraMovement = (InputHelper input) =&gt; { return (input.LeftStickPosition.X * _moveRate) * _zoom; } public Func&lt;InputHelper, float&gt; _verticalCameraMovement = (InputHelper input) =&gt; { return (-input.LeftStickPosition.Y * _moveRate) * _zoom; } ... public void Update(InputHelper input) { ... position += new Vector2(_horizontalCameraMovement(input), _verticalCameraMovement(input)); ... } </code></pre> <p>In this example, you can write a function that does arbitrary calculation and returns a float that will determine the amount that the camera moves by. Not the best code but it gets the point across.</p> <pre><code>private int foo; public int FooProperty { get { if (_onFooGotten() == true) return _foo; } set { if (onFooSet() == true) _foo = value; } } ... public Func&lt;bool&gt; _onFooGotten = () =&gt; { //do whatever... return true; } public Func&lt;bool&gt; _onFooSet = () =&gt; { //do whatever... return true; } </code></pre> <p>This isnt the best example (as i havent explored this use relly yet) but it shows an example of using a lambda function for a quick event raiser without the hassle of delegates. Edit: thought of another one. Nullables! the closest thing c# has to optional parameters.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/957443#957443 4 Answer by alavers for Hidden Features of C#? alavers 2009-06-05T18:43:55Z 2009-10-10T13:43:11Z <p>FlagsAttribute, a small but <a href="http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx" rel="nofollow">nice feature</a> when using enum to make a bitmasks:</p> <pre><code>[Flags] public enum ConfigOptions { None = 0, A = 1 &lt;&lt; 0, B = 1 &lt;&lt; 1, Both = A | B } Console.WriteLine( ConfigOptions.A.ToString() ); Console.WriteLine( ConfigOptions.Both.ToString() ); // Will print: // A // A, B </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/958103#958103 0 Answer by Kevin for Hidden Features of C#? Kevin 2009-06-05T20:56:00Z 2009-06-05T20:56:00Z <p>If you have the search textbox in your Visual Studio toolbar, you can type ">of Program.cs" to open the file Program.cs</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/961401#961401 4 Answer by Tolgahan Albayrak for Hidden Features of C#? Tolgahan Albayrak 2009-06-07T07:26:09Z 2009-09-12T20:51:57Z <p>The data type can be defined for an enumeration:</p> <pre><code>enum EnumName : [byte, char, int16, int32, int64, uint16, uint32, uint64] { A = 1, B = 2 } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/993118#993118 2 Answer by zebrabox for Hidden Features of C#? zebrabox 2009-06-14T16:11:16Z 2009-09-12T21:00:23Z <p>A few from me - make of them what you will.</p> <p>The attribute:</p> <pre><code>[assembly::InternalsVisibleTo("SomeAssembly")] </code></pre> <p>Allows you to expose out the internal methods/properties or data from your assembly to another assembly called 'SomeAssembly'. All protected/private stuff remains hidden.</p> <p><hr /></p> <p>Static constructors ( otherwise called 'Type Constructor' )</p> <pre><code>public MyClass { public static MyClass() { // type init goes here } ...... } </code></pre> <p><hr /></p> <p>The keyword <code>internal</code>. So useful in so many ways.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/993271#993271 3 Answer by ShuggyCoUk for Hidden Features of C#? ShuggyCoUk 2009-06-14T17:31:46Z 2009-09-12T21:09:53Z <h2>Advanced Debugging</h2> <h3>Display</h3> <p>The already mentioned attributes DebuggerDisplay and DebuggerBrowsable control the visibility of elements and the textual value displayed. Simply overriding ToString() will cause the debugger to use the output of that method. </p> <p>If you want more complex output you can use/create a <a href="http://msdn.microsoft.com/en-us/library/zayyhzts.aspx" rel="nofollow">Debugger Visualizer</a>, several examples are available <a href="http://www.dotnetpowered.com/DebuggerVisualizers.aspx" rel="nofollow">here</a>.</p> <h3>Son Of Strike</h3> <p>Microsoft provide a debugger extension known as <a href="http://msdn.microsoft.com/en-us/library/bb190764%28vs.80%29.aspx" rel="nofollow">SOS</a>. This is an extremely powerful (though often confusing) extension which is an excellent way to diagnose 'leaks', more accurately unwanted references to objects no longer required.</p> <h3>Symbol Server for framework source</h3> <p>Following these <a href="http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx" rel="nofollow">instructions</a> will allow you to step through the source of some parts of the framework.</p> <h3>Changes in 2010</h3> <p>Several enhancements and new features exist in Visual Studio 2010: </p> <ul> <li><a href="http://www.danielmoth.com/Blog/2009/05/parallel-tasks-new-visual-studio-2010.html" rel="nofollow">Debugging Parallel Tasks</a> </li> <li><a href="http://www.danielmoth.com/Blog/2009/05/parallel-stacks-another-new-vs2010.html" rel="nofollow">Parallel Stacks</a> allow viewing multiple threads call stacks at the same time. </li> <li><a href="http://channel9.msdn.com/posts/VisualStudio/Historical-Debugger-and-Test-Impact-Analysis-in-Visual-Studio-Team-System-2010/" rel="nofollow">Historical Debugging</a> lets you see events and non-local variables back in time (so long as you enable the collection in advance). Potentially a significant change to how you debug things.</li> </ul> http://stackoverflow.com/questions/9033/hidden-features-of-c/1002816#1002816 9 Answer by JoshL for Hidden Features of C#? JoshL 2009-06-16T17:14:06Z 2009-06-16T17:14:06Z <p><strong>Use "throw;" instead of "throw ex;" to preserve stack trace</strong></p> <p>If re-throwing an exception without adding additional information, use "throw" instead of "throw ex". An empty "throw" statement in a catch block will emit specific IL that re-throws the exception while preserving the original stack trace. "throw ex" loses the stack trace to the original source of the exception.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1003232#1003232 1 Answer by epitka for Hidden Features of C#? epitka 2009-06-16T18:38:22Z 2009-06-16T18:38:22Z <p>Ability to create instance of the type based on the generic parameter like this</p> <p>new T();</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1010679#1010679 3 Answer by statenjason for Hidden Features of C#? statenjason 2009-06-18T03:44:34Z 2009-06-18T03:44:34Z <p>The Yield keyword is often overlooked when it has a lot of power. I blogged about it awhile ago and discussed benefits (differed processing) and happens under the hood of yield to help give a stronger understanding.</p> <p><a href="http://blog.jstaten.com/using-yield-csharp/" rel="nofollow">Using Yield in C#</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1016037#1016037 2 Answer by SLaks for Hidden Features of C#? SLaks 2009-06-19T01:59:31Z 2009-09-12T21:03:31Z <p>You can create delegates from extension methods as if they were regular methods, currying the <code>this</code> parameter. For example, </p> <pre><code>static class FunnyExtension { public static string Double(this string str) { return str + str; } public static int Double(this int num) { return num + num; } } Func&lt;string&gt; aaMaker = "a".Double; Func&lt;string, string&gt; doubler = FunnyExtension.Double; Console.WriteLine(aaMaker()); //Prints "aa" Console.WriteLine(doubler("b")); //Prints "bb" </code></pre> <p>Note that this won't work on extension methods that extend a value type; see <a href="http://stackoverflow.com/questions/1016033/extension-methods-defined-on-value-types-cannot-be-used-to-create-delegates-why">this question</a>.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1017882#1017882 8 Answer by devilmaster for Hidden Features of C#? devilmaster 2009-06-19T13:08:28Z 2009-06-19T13:08:28Z <p>Not sure if this one got mentioned yet but the ThreadStatic atribute is a realy useful one. This makes a static field static just for the current thread.</p> <pre><code>[ThreadStatic] private static int _ThreadStaticInteger; </code></pre> <p>You should not include an initailizer because it only get executed once for the entire application, you're better off makeing the field nullable and checking if the value is null before you use it.</p> <p>And one more thing for ASP.NET apps threads are reused so if you modify the value it could end up beeing used for another page request.</p> <p>Still i have found this useful on several ocasions... for example in creating a custom transaction class that :</p> <pre><code>using(DbTransaction tran = new DbTransaction()) { DoQuery("..."); DoQuery("..."); } </code></pre> <p>The DbTransaction constructor sets a ThreadStatic field to its self and resets it to null in the dispose method. DoQuery checks the static field and if != null uses the current transaction if not it defauls to something else. We avoid having to pass the trasaction to each metod plus it makes it easy to wrap other methods that were not originaly meant to be used with transaction inside a transaction ...</p> <p>Just one use :)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1025614#1025614 3 Answer by John for Hidden Features of C#? John 2009-06-22T05:42:31Z 2009-09-27T20:15:05Z <pre><code>HttpContext.Current.Server.Execute </code></pre> <p>is great for rendering HTML to strings for AJAX callbacks. You can use this with a component instead of piecing together HTML string snippets. I was able to cut page bloat down a couple of hundred KB with virtually no mess. I used it like this:</p> <pre><code>Page pageHolder = new Page(); UserControl viewControl = (UserControl)pageHolder.LoadControl(@"MyComponent.ascx"); pageHolder.Controls.Add(viewControl); StringWriter output = new StringWriter(); HttpContext.Current.Server.Execute(pageHolder, output, false); return output.ToString(); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1026941#1026941 1 Answer by Paul Ruane for Hidden Features of C#? Paul Ruane 2009-06-22T12:29:48Z 2009-06-22T12:29:48Z <p>Marketing events as non-serializable:</p> <pre><code>[field:NonSerializable] public event SomeDelegate SomeEvent; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1049977#1049977 5 Answer by Mike for Hidden Features of C#? Mike 2009-06-26T16:13:06Z 2009-06-26T16:13:06Z <p>You can add and remove delegates with less typing.</p> <p>Usual way:</p> <pre><code> handler = new EventHandler(func); </code></pre> <p>Less typing way:</p> <pre><code> handler = func; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1062170#1062170 1 Answer by Michael Erasmus for Hidden Features of C#? Michael Erasmus 2009-06-30T07:11:12Z 2009-06-30T07:11:12Z <p>Generic constraints:</p> <pre><code> //Constructor constraint, T has a default empty constructor class Node&lt;K,T&gt; where T : new() { } //Reference\Value Type constraints //T is a struct public class MyClass&lt;T&gt; where T : struct {...} //T is a reference type public class MyClass&lt;T&gt; where T : class {...} public class MyClass&lt;T&gt; where T : SomeBaseClass, ISomeInterface {...} </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1062556#1062556 2 Answer by Mark Seemann for Hidden Features of C#? Mark Seemann 2009-06-30T08:55:57Z 2009-06-30T08:55:57Z <p>The <code>Or</code> assignment operator is quite nice. You can write this:</p> <pre><code>x |= y </code></pre> <p>instead of this:</p> <pre><code>x = x | y </code></pre> <p>This is often practical if you have to a variable or property (<code>x</code> in the example) that starts out as <code>false</code> but you want to change it to the value of some other boolean variable/property <em>only when</em> that other value is <code>true</code>.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1071983#1071983 3 Answer by wcoenen for Hidden Features of C#? wcoenen 2009-07-02T00:34:17Z 2009-07-02T00:34:17Z <p>Extension methods can be called on <code>null</code>; this will not cause a <code>NullReferenceException</code> to be thrown.</p> <p>Example application: you can define an alternative for <code>ToString()</code> called <code>ToStringOrEmpty()</code> which will return the empty string when called on <code>null</code>.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1114418#1114418 3 Answer by Zyphrax for Hidden Features of C#? Zyphrax 2009-07-11T19:01:09Z 2009-07-11T19:30:44Z <p>I've read through all seven pages, and I'm missing these:</p> <p><strong>String.Join</strong></p> <p>I've seen a lot of for-loops to convert a list of items to a string with separators. It's always a pain to make sure you doin't start with a separator and don't end with a separator. A built-in method makes this easier:</p> <pre><code>String.Join(",", new String[] { "a", "b", "c"}); </code></pre> <p><strong>TODO in comment</strong></p> <p>Not really a C# feature, more of a Visual Studio feature. When you start your comment with TODO, it's added to your Visual Studio Task List (View -> Task List. Comments)</p> <pre><code>// TODO: Implement this! throw new NotImplementedException(); </code></pre> <p><strong>Extension methods meets Generics</strong></p> <p>You can combine extension methods with Generics, when you think of the tip earlier in this topic, you can add extensions to specific interfaces</p> <pre><code>public static void Process&lt;T&gt;(this T item) where T:ITest,ITest2 {} </code></pre> <p><strong>Enumerable.Range</strong></p> <p>Just want a list of integers?</p> <pre><code>Enumerable.Range(0, 15) </code></pre> <p>I'll try to think of some more...</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1118859#1118859 3 Answer by Pratik for Hidden Features of C#? Pratik 2009-07-13T11:05:00Z 2009-09-27T20:10:17Z <p>Pointers in C#. </p> <p>They can be used to do in-place string manipulation. This is an unsafe feature so the unsafe keyword is used to mark the region of unsafe code. Also note how the fixed keyword is used to indicate that the memory pointed to is pinned and cannot be moved by the GC. This is essential a pointers point to memory addresses and the GC can move the memory to different address otherwise resulting in an invalid pointer.</p> <pre><code> string str = "some string"; Console.WriteLine(str); unsafe { fixed(char *s = str) { char *c = s; while(*c != '\0') { *c = Char.ToUpper(*c++); } } } Console.WriteLine(str); </code></pre> <p>I wouldn't ever do it but just for the sake of this question to demonstrate this feature.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1120083#1120083 -2 Answer by Shimmy for Hidden Features of C#? Shimmy 2009-07-13T15:16:08Z 2009-07-13T15:16:08Z <pre><code>static void Main(string[] args) { User user = new User(); bool isAdmin = user.Roles == Roles.Administrator; bool isIntermediate = user.Roles == Roles.User; //true - 4 | 1 == 5 } class User { public Roles Roles = Roles.User | Roles.Manager; } public enum Roles { Administrator = 0, Manager = 1, Webmaster = 2, User = 4, Intermediate = 5, Anonymous = 8 } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1135505#1135505 2 Answer by David.Chu.ca for Hidden Features of C#? David.Chu.ca 2009-07-16T05:16:29Z 2009-09-12T20:58:28Z <p>I like to use the <em>using</em> directive to rename some classes for easy reading like this:</p> <pre><code>// defines a descriptive name for a complexed data type using MyDomainClassList = System.Collections.Generic.List&lt; MyProjectNameSpace.MyDomainClass&gt;; .... MyDomainClassList myList = new MyDomainClassList(); /* instead of List&lt;MyDomainClass&gt; myList = new List&lt;MyDomainClass&gt;(); */ </code></pre> <p>This is also very handy for code maintenance. If you need to change the class name, there is only one place you need to change. Another example:</p> <pre><code>using FloatValue = float; // you only need to change it once to decimal, double... .... FloatValue val1; ... </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1143637#1143637 0 Answer by RandomNickName42 for Hidden Features of C#? RandomNickName42 2009-07-17T14:29:23Z 2009-09-12T21:23:59Z <p><a href="http://code.msdn.microsoft.com/ExceptionFilterInjct" rel="nofollow">Exception Filters</a>. So "hidden" you <em>can't</em> even use them (at least from C#) without a post-compilation patch ;) </p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1161934#1161934 1 Answer by Dan Diplo for Hidden Features of C#? Dan Diplo 2009-07-21T21:46:11Z 2009-07-21T21:46:11Z <p>How about <a href="http://msdn.microsoft.com/en-us/library/bb397951.aspx" rel="nofollow">Expression Trees</a>? They are the heart of LINQ and allow for defered execution:</p> <p>Taken from <a href="http://www.davidhayden.com/blog/dave/archive/2006/12/18/ExpressionTrees.aspx" rel="nofollow">David Hayden's blog</a>:</p> <p>In C# 3.0, you can define a delegate as follows using a lambda expression:</p> <pre><code>Func&lt;int,int&gt; f = x =&gt; x + 1; </code></pre> <p>This delegate is compiled into executable code in your application and can be called as such:</p> <pre><code>var three = f(2); // 2 + 1 </code></pre> <p>The code works as you would expect. Nothing fancy here.</p> <p><strong>Expression Trees</strong></p> <p>When you define the delegate as an Expression Tree by using System.Query.Expression:</p> <pre><code>Expression&lt;Func&lt;int,int&gt;&gt; expression = x =&gt; x + 1; </code></pre> <p>The delegate is no longer compiled into executable code, but compiled as data that can be converted and compiled into the original delegate.</p> <p>To actually use the delegate represented as an Expression Tree in your application, you would have to compile and invoke it in your application:</p> <pre><code>var originalDelegate = expression.Compile(); var three = originalDelegate.Invoke(2); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1162648#1162648 3 Answer by Martin Konicek for Hidden Features of C#? Martin Konicek 2009-07-22T01:42:45Z 2009-07-22T01:42:45Z <pre><code>[field: NonSerialized] public event EventHandler Event; </code></pre> <p>This way, the event listener is not serialized.</p> <p>Just [NonSerialized] does not work, because NonSerializedAttribute can only be applied to fields.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1163889#1163889 2 Answer by netzer for Hidden Features of C#? netzer 2009-07-22T08:39:34Z 2009-07-22T08:39:34Z <p>I especially like the nullable DateTime. So if you have some cases where a Date is given and other cases where no Date is given I think this is best to use and IMHO easier to understand as using <code>DateTime.MinValue</code> or anything else...</p> <pre><code>DateTime? myDate = null; if (myDate.HasValue) { //doSomething } else { //soSomethingElse } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1173935#1173935 1 Answer by Brad for Hidden Features of C#? Brad 2009-07-23T19:26:07Z 2009-07-23T19:26:07Z <p>If you are trying to create a comma delimited string from a list of items:</p> <pre><code>string[] itemList = { "Example 1", "Example 2", "Example 3" }; CommaDelimitedStringCollection commaStr = new CommaDelimitedStringCollection(); commaStr.AddRange(itemList); //outputs Example 1,Example 2,Example 3 </code></pre> <p>Look <a href="http://blog.crowe.co.nz/archive/2007/08/25/c---How-to-create-a-comma-seperated-string-from.aspx" rel="nofollow">here</a> for another example.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1185988#1185988 1 Answer by pb for Hidden Features of C#? pb 2009-07-27T00:43:31Z 2009-07-27T00:43:31Z <p>Zero parameter Lambdas</p> <pre><code>()=&gt;Console.ReadLine() </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1204390#1204390 1 Answer by ccook for Hidden Features of C#? ccook 2009-07-30T03:57:06Z 2009-07-30T03:57:06Z <p>I didn't see this:</p> <pre><code>for (;;); </code></pre> <p>The same as</p> <pre><code>while (true) ; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1204441#1204441 4 Answer by Brian Surowiec for Hidden Features of C#? Brian Surowiec 2009-07-30T04:23:58Z 2009-08-12T03:58:54Z <p>I'm becoming a big fan of extension methods since they can add much wanted functionality to existing code or code you can't edit. One of my favorites I add in to everything I do now is for string.IsNullOrEmpty()</p> <pre><code>public static class Strings { public static bool IsNullOrEmpty(this string value) { return string.IsNullOrEmpty(value); } } </code></pre> <p>This lets you shorten your code a bit like this</p> <pre><code>var input = Console.ReadLine(); if (input.IsNullOrEmpty()) { Console.WriteLine("try again"); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1231428#1231428 13 Answer by Christian Hubmann for Hidden Features of C#? Christian Hubmann 2009-08-05T05:57:55Z 2009-08-05T05:57:55Z <p>Conditional string.Format:</p> <p>Applies different formatting to a number depending on whether the number is positive, negative, or zero.</p> <pre><code>string s = string.Format("{0:positive;negative;zero}", i); </code></pre> <p>e.g.</p> <pre><code>string format = "000;-#;(0)"; string pos = 1.ToString(format); // 001 string neg = (-1).ToString(format); // -1 string zer = 0.ToString(format); // (0) </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1234502#1234502 0 Answer by John Leidegren for Hidden Features of C#? John Leidegren 2009-08-05T17:01:19Z 2009-09-27T20:06:03Z <p>A lot of this is explained already, in <a href="http://www.ecma-international.org/publications/standards/Ecma-334.htm" rel="nofollow">the standard</a>. It's a good read for any beginner as well as expert, it's a lot to read, but it's the official standard, and it's filled with juicy details.</p> <p>Once you fully understand C#, it's time to take this further to understand the fundamentals of the <a href="http://www.ecma-international.org/publications/standards/Ecma-335.htm" rel="nofollow">Common Language Infrastructure</a>. The architecture and underpinnings of C#.</p> <p>I've met a variety of programmers that don't know the difference between an object and a ValueType except the adherent limitations thereof. </p> <p>Familiarize yourself with these two documents and you'll never become that person.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1234603#1234603 0 Answer by Ray for Hidden Features of C#? Ray 2009-08-05T17:20:36Z 2009-08-05T17:20:36Z <p>When you need to (a)synchronously communicate between objects about occurance of an event there is special purpose interface called <strong>ISynchronizeInvoke</strong>.</p> <p>Quoting MSDN article (<a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.isynchronizeinvoke.aspx" rel="nofollow">link</a>): </p> <blockquote> <p>Objects that implement this interface can receive notification that an event has occurred, and they can respond to queries about the event. In this way, clients can ensure that one request has been processed before they submit a subsequent request that depends on completion of the first.</p> </blockquote> <p>Here is a generic wrapper:</p> <pre><code>protected void OnEvent&lt;T&gt;(EventHandler&lt;T&gt; eventHandler, T args) where T : EventArgs { if (eventHandler == null) return; foreach (EventHandler&lt;T&gt; singleEvent in eventHandler.GetInvocationList()) { if (singleEvent.Target != null &amp;&amp; singleEvent.Target is ISynchronizeInvoke) { var target = (ISynchronizeInvoke)singleEvent.Target; if (target.InvokeRequired) { target.BeginInvoke(singleEvent, new object[] { this, args }); continue; } } singleEvent(this, args); } } </code></pre> <p>and here is an example usage:</p> <pre><code>public event EventHandler&lt;ProgressEventArgs&gt; ProgressChanged; private void OnProgressChanged(int processed, int total) { OnEvent(ProgressChanged, new ProgressEventArgs(processed, total)); } </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1242225#1242225 2 Answer by JoshL for Hidden Features of C#? JoshL 2009-08-07T00:13:41Z 2009-08-07T00:13:41Z <p>Expression to initialize a Dictionary in C# 3.5:</p> <p><code>new Dictionary&lt;string, Int64&gt;() {{"Testing", 123}, {"Test", 125}};</code></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1243242#1243242 3 Answer by cornerback84 for Hidden Features of C#? cornerback84 2009-08-07T06:37:19Z 2009-09-27T19:58:54Z <p>I don't think someone has mentioned that appending ? after a value type name will make it nullable.</p> <p>You can do: </p> <pre><code>DateTime? date = null; </code></pre> <p>DateTime is a structure.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1243265#1243265 7 Answer by Jason Williams for Hidden Features of C#? Jason Williams 2009-08-07T06:44:19Z 2009-08-07T06:44:19Z <p>Programmers moving from C/C++ may miss this one:</p> <p>In C#, % (modulus operator) works on floats!</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1247323#1247323 0 Answer by paracycle for Hidden Features of C#? paracycle 2009-08-07T22:39:32Z 2009-08-07T22:39:32Z <p>Generics and the <a href="http://en.wikipedia.org/wiki/Curiously%5Frecurring%5Ftemplate%5Fpattern" rel="nofollow">Curiously-Recurring Template Pattern</a> really help with some static method/property declarations.</p> <p>Suppose you are building a class hierarchy:</p> <pre><code>class Base { } class Foo: Base { } class Bar: Base { } </code></pre> <p>Now, you want to declare static methods on your types that should take parameters (or return values) of the same type or static properties of the same type. For example, you want:</p> <pre><code>class Base { public static Base Get() { // Return a suitable Base. } } class Foo: Base { public static Foo Get() { // Return a suitable Foo. } } class Bar: Base { public static Bar Get() { // Return a suitable Bar. } } </code></pre> <p>If these static methods basically all do the same thing, then you have lots of duplicated code on your hands. One solution would be to drop type safety on the return values and to always return type <code>Base</code>. However, if you want type safety, then the solution is to declare the <code>Base</code> as:</p> <pre><code>class Base&lt;T&gt; where T: Base&lt;T&gt; { public static T Get&lt;T&gt;() { // Return a suitable T. } } </code></pre> <p>and you <code>Foo</code> and <code>Bar</code> as:</p> <pre><code>class Foo: Base&lt;Foo&gt; { } class Bar: Base&lt;Bar&gt; { } </code></pre> <p>This way, they will automatically get their <strong>copies</strong> of the static methods.</p> <p>This also works wonders to encapsulate the <strong>Singleton</strong> pattern in a base class (I know the code below is not thread-safe, it just to demonstrate a point):</p> <pre><code>public class Singleton&lt;T&gt; where T: Singleton&lt;T&gt;, new() { public static T Instance { get; private set; } static Singleton&lt;T&gt;() { Instance = new T(); } } </code></pre> <p>I realize that this forces you to have a public parameterless constructor on your singleton subclass but there is no way to avoid that at compile time without a <code>where T: protected new()</code> construct; however one can use <a href="http://www.codeproject.com/KB/architecture/GenericSingletonPattern.aspx" rel="nofollow">reflection</a> to invoke the protected/private parameterless constructor of the sub-class at runtime to achieve that.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1277525#1277525 3 Answer by yapiskan for Hidden Features of C#? yapiskan 2009-08-14T12:13:18Z 2009-08-14T12:13:18Z <p><a href="http://blogs.msdn.com/ericlippert/archive/2009/08/13/four-switch-oddities.aspx" rel="nofollow">Four switch oddities</a> by Eric Lippert</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1280160#1280160 0 Answer by Maslow for Hidden Features of C#? Maslow 2009-08-14T20:53:32Z 2009-09-27T19:57:26Z <p>Keeps DataGridView from showing the property:</p> <pre><code>[System.ComponentModel.Browsable(false)] public String LastActionID{get; private set;} </code></pre> <p>Lets you set a friendly display for components (like a DataGrid or DataGridView):</p> <pre><code>[System.ComponentModel.DisplayName("Last Action")] public String LastAction{get; private set;} </code></pre> <p>For your backing variables, if you don't want anything accessing them directly this makes it tougher:</p> <pre><code>[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] private DataController p_dataSources; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1311431#1311431 0 Answer by Minta szerződés for Hidden Features of C#? Minta szerződés 2009-08-21T11:30:38Z 2009-08-21T13:59:39Z <p>The ability to use LINQ to do inline work on collections that used to take iteration and conditionals can be incredibly valuable. It's worth learning how all the LINQ extension methods can help make your code much more compact and maintainable.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1318297#1318297 1 Answer by mezoid for Hidden Features of C#? mezoid 2009-08-23T11:07:06Z 2009-08-23T11:07:06Z <p>One that I just learned recently is that you can still call <a href="http://stackoverflow.com/questions/1242883/is-there-a-better-way-to-write-this-line-of-c-code-in-c3-0">methods on a nullable value</a>....</p> <p>It turns out what when you have a nullable value:</p> <pre><code>decimal? MyValue = null; </code></pre> <p>where you might think you would have to write:</p> <pre><code>MyValue == null ? null : MyValue .ToString() </code></pre> <p>you can instead write:</p> <pre><code>MyValue.ToString() </code></pre> <p>I've been aware that I could call MyValue.HasValue and MyValue.Value...but it didn't fully click that I could call ToString().</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1371317#1371317 0 Answer by najmeddine for Hidden Features of C#? najmeddine 2009-09-03T03:36:51Z 2009-09-12T21:20:50Z <p>This will not compile:</p> <pre><code>namespace ns { class Class1 { Nullable&lt;int&gt; a; } } </code></pre> <p><em>The type or namespace name 'Nullable' could not be found (are you missing a using directive or an assembly reference?)</em> &lt;-- missing '<code>using System;</code>'</p> <p>But</p> <pre><code>namespace ns { class Class1 { int? a; } } </code></pre> <p>will compile! (.NET 2.0).</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1399045#1399045 3 Answer by jpierson for Hidden Features of C#? jpierson 2009-09-09T11:14:47Z 2009-09-09T11:14:47Z <p>Nested classes can access private members of a outer class.</p> <pre><code>public class Outer { private int Value { get; set; } public class Inner { protected void ModifyOuterMember(Outer outer, int value) { outer.Value = value; } } } </code></pre> <p>And now together with the above feature you can also inherit from nested classes as if they were top level classes as shown below.</p> <pre><code>public class Cheater : Outer.Inner { protected void MakeValue5(Outer outer) { ModifyOuterMember(outer, 5); } } </code></pre> <p>These features allow for some interesting possibilities as far as providing access to particular members via somewhat hidden classes.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130 3 Answer by roosteronacid for Hidden Features of C#? roosteronacid 2009-09-09T11:31:54Z 2009-09-12T21:12:45Z <p><strong>JavaScript-like anonymous inline-functions</strong></p> <p>Return a String:</p> <pre><code>var s = new Func&lt;String&gt;(() =&gt; { return "Hello World!"; })(); </code></pre> <p>Return a more complex Object:</p> <pre><code>var d = new Func&lt;Dictionary&lt;Int32, String&gt;&gt;(() =&gt; { var _d = new Dictionary&lt;Int32, String&gt;(); _d.Add(0, "Hello World!"); return _d; })(); </code></pre> <p>A real-world use-case:</p> <pre><code>var tr = new TableRow(); tr.Cells.AddRange ( new[] { new TableCell { Text = "" }, new TableCell { Text = "" }, new TableCell { Text = "" }, new TableCell { Text = new Func&lt;String&gt;(() =&gt; { return @"Result of a chunk of logic, without having to define the logic outside of the TableCell constructor"; })() }, new TableCell { Text = "" }, new TableCell { Text = "" } } ); </code></pre> <p><em>Note: You cannot re-use variable names inside the inline-function's scope.</em></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1404712#1404712 0 Answer by sevavladimirov for Hidden Features of C#? sevavladimirov 2009-09-10T11:21:28Z 2009-09-10T11:21:28Z <p>At first - <a href="http://msdn.microsoft.com/en-us/library/d8eyd8zc.aspx" rel="nofollow">DebuggerTypeProxy</a>.</p> <pre><code>[DebuggerTypeProxy(typeof(HashtableDebugView))] class MyHashtable : Hashtable { private const string TestString = "This should not appear in the debug window."; internal class HashtableDebugView { private Hashtable hashtable; public const string TestStringProxy = "This should appear in the debug window."; // The constructor for the type proxy class must have a // constructor that takes the target type as a parameter. public HashtableDebugView(Hashtable hashtable) { this.hashtable = hashtable; } } } </code></pre> <p>At second:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms171819.aspx" rel="nofollow">ICustomTypeDescriptor</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1408887#1408887 0 Answer by fauxtrot for Hidden Features of C#? fauxtrot 2009-09-11T03:52:09Z 2009-09-12T21:18:04Z <p>I apologize if this one has been mentioned, but I use this a lot. </p> <p>An add-in for Visual Studio was developed by Alex Papadimoulis. It's used for pasting regular text as string, string builder, comment or region.</p> <p><a href="http://weblogs.asp.net/alex%5Fpapadimoulis/archive/2004/05/25/Smart-Paster-1.1-Add-In---StringBuilder-and-Better-C%5F2300%5F-Handling.aspx" rel="nofollow">http://weblogs.asp.net/alex%5Fpapadimoulis/archive/2004/05/25/Smart-Paster-1.1-Add-In---StringBuilder-and-Better-C%5F2300%5F-Handling.aspx</a></p> <p>In this plugin (I also don't know if this has been mentioned) I noticed that strings are pasted with the string literal prefix:</p> <pre><code>@ </code></pre> <p>I knew about these, but I didn't know about using a double quote within a literal to escape the quote. </p> <p>For example</p> <pre><code>string s = "A line of text" + Environment.NewLine + "Another with a \"quote\"!!"; </code></pre> <p>can be expressed as</p> <pre><code>string s = @"A line of text Another with a ""quote""!!"; </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1415909#1415909 3 Answer by codymanix for Hidden Features of C#? codymanix 2009-09-12T19:26:18Z 2009-09-12T19:26:18Z <p>When defining custom attributes you can use them with [MyAttAttribute] or with [MyAtt]. When classes exist for both writings, then a compilation error occures.</p> <p>The @ special character can be used to distinguish between them:</p> <pre><code>[AttributeUsage(AttributeTargets.All)] public class X: Attribute {} [AttributeUsage(AttributeTargets.All)] public class XAttribute: Attribute {} [X] // Error: ambiguity class Class1 {} [XAttribute] // Refers to XAttribute class Class2 {} [@X] // Refers to X class Class3 {} [@XAttribute] // Refers to XAttribute class Class4 {} </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1415952#1415952 3 Answer by codymanix for Hidden Features of C#? codymanix 2009-09-12T19:47:40Z 2009-09-12T19:47:40Z <p>You can "use" multiple objects in one using statement.</p> <pre><code>using (Font f 1= new Font("Arial", 10.0f), f2 = new Font("Arial", 10.0f)) { // Use f1 and f2. } </code></pre> <p>Note that there is already an answer stating that you can do this:</p> <pre><code>using (Font f 1= new Font("Arial", 10.0f)) using (Font f2 = new Font("Arial", 10.0f)) { } </code></pre> <p>Which is different from mine.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1416182#1416182 0 Answer by Oliver for Hidden Features of C#? Oliver 2009-09-12T21:26:06Z 2009-09-12T21:26:06Z <p>Not sure Microsoft would like this question, especially with so many responses. I'm sure I once heard a Microsoft head say:</p> <blockquote> <p>a hidden feature is a wasted feature</p> </blockquote> <p>... or something to that effect.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1435045#1435045 1 Answer by Nissan Fan for Hidden Features of C#? Nissan Fan 2009-09-16T19:38:58Z 2009-09-16T19:38:58Z <p>You can limit the life and thus scope of variables by using { } brackets.</p> <p>string test = "1";</p> <p>{ string test2 = "3"; Console.Write(test2); }</p> <p>Console.Write(test2);</p> <p>test2 only lives within the brackets.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1464831#1464831 3 Answer by Riko for Hidden Features of C#? Riko 2009-09-23T09:00:29Z 2009-09-27T19:53:01Z <p>Apologies for posting so late, I am new to Stack Overflow so missed the earlier opportunity.</p> <p>I find that <code>EventHandler&lt;T&gt;</code> is a great feature of the framework that is underutilised. </p> <p>Most C# developers I come across still define a custom event handler delegate when they are defining custom events, which is simply not necessary anymore.</p> <p>Instead of:</p> <pre><code>public delegate void MyCustomEventHandler(object sender, MyCustomEventArgs e); public class MyCustomEventClass { public event MyCustomEventHandler MyCustomEvent; } </code></pre> <p>you can go:</p> <pre><code>public class MyCustomEventClass { public event EventHandler&lt;MyCustomEventArgs&gt; MyCustomEvent; } </code></pre> <p>which is a lot more concise, plus you don't get into the dilemma of whether to put the delegate in the .cs file for the class that contains the event, or the EventArgs derived class.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1484174#1484174 0 Answer by Yurik for Hidden Features of C#? Yurik 2009-09-27T18:51:17Z 2009-09-27T19:49:44Z <p>Many answers here suggest improvements that <a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a> highlights by default, such as changing member variables to <code>readonly</code> or <code>const</code>. There are lots of other code improvements and optimizations they automatically check for, that Visual Studio should have been doing all along.</p> <p>(R# is the best IMHO tool for .NET, and no, I don't work for them.)</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1484202#1484202 0 Answer by Michael Valenty for Hidden Features of C#? Michael Valenty 2009-09-27T19:04:44Z 2009-09-27T19:47:53Z <p>Open generics are another handy feature especially when using <a href="http://en.wikipedia.org/wiki/Inversion%5Fof%5Fcontrol" rel="nofollow">Inversion of Control</a>:</p> <pre><code>container.RegisterType(typeof(IRepository&lt;&gt;), typeof(NHibernateRepository&lt;&gt;)); </code></pre> http://stackoverflow.com/questions/9033/hidden-features-of-c/1593594#1593594 0 Answer by Himadri for Hidden Features of C#? Himadri 2009-10-20T10:04:34Z 2009-10-20T10:04:34Z <p>Use of @ before a string that contains escape char. Basically when a physical path is used to assign in a string variable everybody uses '\' where escape character is present in a string.</p> <p>e.g. string strPath="D:\websites\web1\images\";</p> <p>But escape characters can be ignored using @ before the string value. </p> <p>e.g. string strPath=@"D:\websites\web1\images\";</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1625860#1625860 0 Answer by Florian Doyon for Hidden Features of C#? Florian Doyon 2009-10-26T16:45:31Z 2009-10-26T16:45:31Z <p>I love abusing the fact that static templated classes don't share their static members.</p> <p>Here's a threadsafe (at creation time) and cheap substitute to any Dictionary </p> <pre><code>public static class MyCachedData&lt;T&gt;{ static readonly CachedData Value; static MyCachedData(){ Value=// Heavy computation, such as baking IL code or doing lots of reflection on a type } } </code></pre> <p>Cheers, Florian</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1647219#1647219 1 Answer by L. Shaydariv for Hidden Features of C#? L. Shaydariv 2009-10-29T23:44:23Z 2009-10-29T23:44:23Z <p>The following one is not hidden, but it's quite implicit. I don't know whether samples like the following one have been published here, and I can't see are there any benefits (probably there are none), but I'll try to show a "weird" code. The following sample simulates <code>for</code> statement via functors in C# (delegates / anonymous delegates [lambdas]) and closures. Other flow statements like <code>if</code>, <code>if/else</code>, <code>while</code> and <code>do/whle</code> are simulated as well, but I'm not sure for <code>switch</code> (perhaps, I'm too lazy :)). I've compacted the sample source code a little to make it more clear.</p> <pre><code>private static readonly Action EmptyAction = () =&gt; { }; private static readonly Func&lt;bool&gt; EmptyCondition = () =&gt; { return true; }; private sealed class BreakStatementException : Exception { } private sealed class ContinueStatementException : Exception { } private static void Break() { throw new BreakStatementException(); } private static void Continue() { throw new ContinueStatementException(); } private static void For(Action init, Func&lt;bool&gt; condition, Action postBlock, Action statement) { init = init ?? EmptyAction; condition = condition ?? EmptyCondition; postBlock = postBlock ?? EmptyAction; statement = statement ?? EmptyAction; for ( init(); condition(); postBlock() ) { try { statement(); } catch ( BreakStatementException ) { break; } catch ( ContinueStatementException ) { continue; } } } private static void Main() { int i = 0; // avoiding error "Use of unassigned local variable 'i'" if not using `for` init block For(() =&gt; i = 0, () =&gt; i &lt; 10, () =&gt; i++, () =&gt; { if ( i == 5 ) Continue(); Console.WriteLine(i); } ); } </code></pre> <p>If I'm not wrong, this approach is pretty relative to the functional programming practice. Am I right?</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1658119#1658119 0 Answer by Mehdi Golchin for Hidden Features of C#? Mehdi Golchin 2009-11-01T19:43:23Z 2009-11-02T17:31:42Z <p>I love Delegate and also Linq-To-Object. I don't know whether anybody mentioned it or not. But it's simple.</p> <pre><code>var AnotherThings = from t in 'A collection of things' where (t.Name.StartWith("Foo")) orderby t.Index descending select (new Func&lt;AnotherThing&gt;(() =&gt; { AnotherThing at = t.CreateAnotherThing(); at.Initialize(); . . . return at; }))()); </code></pre> <p>The above code snippet demonstrates how to define a method inline and call it in a Linq query.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/1677556#1677556 1 Answer by plaureano for Hidden Features of C#? plaureano 2009-11-05T00:10:43Z 2009-11-05T00:10:43Z <p>C# allows you to add property setter methods to concrete types that implement readonly interface properties even though the interface declaration itself has no property setter. For example:</p> <pre><code>public interface IReadOnlyFoo { object SomeReadOnlyProperty { get; } } </code></pre> <p>The concrete class looks like this:</p> <pre><code>internal class Foo : IReadOnlyFoo { public object SomeReadOnlyProperty { get; internal set; } } </code></pre> <p>What's interesting about this is that the Foo class is immutable if you cast it to the IReadOnlyFoo interface:</p> <pre><code>// Create a Foo instance Foo foo = new Foo(); // This statement is legal foo.SomeReadOnlyProperty = 12345; // Make Foo read only IReadOnlyFoo readOnlyFoo = foo; // This statement won't compile readOnlyFoo.SomeReadOnlyProperty = 54321; </code></pre>