{
  "revisions": [
    {
      "comment": "Question Unprotected  by NullUserException&#9830;",
      "creation_date": 1353085756,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "cc81d6f3-8e32-47cf-baf1-2313615fd3ed",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 396458,
        "user_type": "moderator",
        "display_name": "NullUserException",
        "reputation": 36392,
        "email_hash": "16961c15df3fee8c4b3056ff83d1938b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<ul>\n<li><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></li>\n<li><code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a></li>\n<li><code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a></li>\n<li><code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a></li>\n<li><code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a></li>\n<li><code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a></li>\n<li><code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a></li>\n<li><code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a></li>\n<li><code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></li>\n</ul>\n\n<h2>Attributes</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a></li>\n<li><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></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a></li>\n<li><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></li>\n</ul>\n\n<h2>Syntax</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/ms173224.aspx\" rel=\"nofollow\"><code>??</code></a> (coalesce nulls) operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li>Number flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a></li>\n<li><code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a></li>\n<li>Implicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>One-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Auto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Namespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Verbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a></li>\n<li><code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a></li>\n<li>@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a></li>\n<li><code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a></li>\n<li>Format string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a></li>\n<li>Property accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a></li>\n<li>Conditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a></li>\n<li><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></li>\n<li><code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a></li>\n</ul>\n\n<h2>Language Features</h2>\n\n<ul>\n<li>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a></li>\n<li>Anonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li><code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a></li>\n<li>Object initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a></li>\n<li>Format strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a></li>\n<li>Extension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a></li>\n<li>Preprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a></li>\n<li><code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a></li>\n<li>Operator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a></li>\n<li>Type inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a></li>\n<li>Boolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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></li>\n<li>Pass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a></li>\n<li>Programmatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a></li>\n<li>Static Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a></li>\n<li>Easier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></li>\n<li><code>__arglist</code> by <a href=\"http://stackoverflow.com/a/1836944/171819\">Zac Bowling</a></li>\n</ul>\n\n<h2>Visual Studio Features</h2>\n\n<ul>\n<li>Select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a></li>\n<li>Snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </li>\n</ul>\n\n<h2>Framework</h2>\n\n<ul>\n<li><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a></li>\n<li><code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a></li>\n<li><code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a></li>\n<li><code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a></li>\n</ul>\n\n<h2>Methods and Properties</h2>\n\n<ul>\n<li><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581\">Will Dean</a></li>\n<li><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></li>\n<li><code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a></li>\n</ul>\n\n<h2>Tips &amp; Tricks</h2>\n\n<ul>\n<li>Nice method for event handlers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9282#9282\">Andreas H.R. Nilsson</a></li>\n<li>Uppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a></li>\n<li>Access anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a></li>\n<li>A quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></li>\n<li>JavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></li>\n</ul>\n\n<h2>Other</h2>\n\n<ul>\n<li>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a>  </li>\n<li><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>  </li>\n<li><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></li>\n</ul>\n",
      "comment": "Removed link to &quot;currying,&quot; a heavily downvoted, deleted answer.",
      "creation_date": 1344270350,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<ul>\n<li><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></li>\n<li><code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a></li>\n<li><code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a></li>\n<li><code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a></li>\n<li><code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a></li>\n<li><code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a></li>\n<li><code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a></li>\n<li><code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a></li>\n<li><code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></li>\n</ul>\n\n<h2>Attributes</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a></li>\n<li><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></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a></li>\n<li><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></li>\n</ul>\n\n<h2>Syntax</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/ms173224.aspx\" rel=\"nofollow\"><code>??</code></a> (coalesce nulls) operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li>Number flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a></li>\n<li><code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a></li>\n<li>Implicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>One-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Auto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Namespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Verbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a></li>\n<li><code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a></li>\n<li>@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a></li>\n<li><code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a></li>\n<li>Format string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a></li>\n<li>Property accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a></li>\n<li>Conditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a></li>\n<li><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></li>\n<li><code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a></li>\n</ul>\n\n<h2>Language Features</h2>\n\n<ul>\n<li>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a></li>\n<li>Currying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a></li>\n<li>Anonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li><code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a></li>\n<li>Object initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a></li>\n<li>Format strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a></li>\n<li>Extension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a></li>\n<li>Preprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a></li>\n<li><code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a></li>\n<li>Operator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a></li>\n<li>Type inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a></li>\n<li>Boolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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></li>\n<li>Pass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a></li>\n<li>Programmatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a></li>\n<li>Static Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a></li>\n<li>Easier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></li>\n<li><code>__arglist</code> by <a href=\"http://stackoverflow.com/a/1836944/171819\">Zac Bowling</a></li>\n</ul>\n\n<h2>Visual Studio Features</h2>\n\n<ul>\n<li>Select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a></li>\n<li>Snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </li>\n</ul>\n\n<h2>Framework</h2>\n\n<ul>\n<li><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a></li>\n<li><code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a></li>\n<li><code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a></li>\n<li><code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a></li>\n</ul>\n\n<h2>Methods and Properties</h2>\n\n<ul>\n<li><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581\">Will Dean</a></li>\n<li><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></li>\n<li><code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a></li>\n</ul>\n\n<h2>Tips &amp; Tricks</h2>\n\n<ul>\n<li>Nice method for event handlers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9282#9282\">Andreas H.R. Nilsson</a></li>\n<li>Uppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a></li>\n<li>Access anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a></li>\n<li>A quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></li>\n<li>JavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></li>\n</ul>\n\n<h2>Other</h2>\n\n<ul>\n<li>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a>  </li>\n<li><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>  </li>\n<li><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></li>\n</ul>\n",
      "last_tags": [],
      "revision_guid": "48decc58-204b-4d41-b70b-21cd7d7f34cd",
      "revision_number": 55,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 102937,
        "user_type": "moderator",
        "display_name": "Robert Harvey",
        "reputation": 83932,
        "email_hash": "1233ec65168f4aae4d939ae8fe6cde1e"
      },
      "post_id": 9033
    },
    {
      "comment": "Notice added  Historical significance by Bill the Lizard&#9830;",
      "creation_date": 1331337248,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "eafcacf5-7b39-40ce-bca8-1664e3a34074",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1288,
        "user_type": "moderator",
        "display_name": "Bill the Lizard",
        "reputation": 113095,
        "email_hash": "fc763c6ff6c160ddad05741e87e517b6"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Locked  by Bill the Lizard&#9830;",
      "creation_date": 1331337248,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "45182d2a-de4c-49a9-9ac6-0f6b4f7aac36",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1288,
        "user_type": "moderator",
        "display_name": "Bill the Lizard",
        "reputation": 113095,
        "email_hash": "fc763c6ff6c160ddad05741e87e517b6"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Undeleted  by Bill the Lizard&#9830;",
      "creation_date": 1331337230,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "14d9a442-98f3-4d93-934b-3f066b970bcf",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1288,
        "user_type": "moderator",
        "display_name": "Bill the Lizard",
        "reputation": 113095,
        "email_hash": "fc763c6ff6c160ddad05741e87e517b6"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Deleted  by Gilles, tchrist, chown, Johannes Schaub - litb, Lorem Ipsum, redsquare, Bo Persson, Andrew Barber&#9830;, John Saunders, Antony Vennard",
      "creation_date": 1331196740,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "8af15d8d-2817-4fce-8a0f-06d884aee997",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": -1,
        "user_type": "moderator",
        "display_name": "Community",
        "reputation": 1,
        "email_hash": "a007be5a61f6aa8f3e85ae2fc18dd66e"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<ul>\n<li><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></li>\n<li><code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a></li>\n<li><code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a></li>\n<li><code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a></li>\n<li><code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a></li>\n<li><code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a></li>\n<li><code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a></li>\n<li><code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a></li>\n<li><code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></li>\n</ul>\n\n<h2>Attributes</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a></li>\n<li><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></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a></li>\n<li><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></li>\n</ul>\n\n<h2>Syntax</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/ms173224.aspx\" rel=\"nofollow\"><code>??</code></a> (coalesce nulls) operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li>Number flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a></li>\n<li><code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a></li>\n<li>Implicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>One-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Auto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Namespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Verbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a></li>\n<li><code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a></li>\n<li>@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a></li>\n<li><code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a></li>\n<li>Format string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a></li>\n<li>Property accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a></li>\n<li>Conditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a></li>\n<li><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></li>\n<li><code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a></li>\n</ul>\n\n<h2>Language Features</h2>\n\n<ul>\n<li>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a></li>\n<li>Currying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a></li>\n<li>Anonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li><code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a></li>\n<li>Object initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a></li>\n<li>Format strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a></li>\n<li>Extension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a></li>\n<li>Preprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a></li>\n<li><code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a></li>\n<li>Operator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a></li>\n<li>Type inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a></li>\n<li>Boolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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></li>\n<li>Pass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a></li>\n<li>Programmatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a></li>\n<li>Static Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a></li>\n<li>Easier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></li>\n<li><code>__arglist</code> by <a href=\"http://stackoverflow.com/a/1836944/171819\">Zac Bowling</a></li>\n</ul>\n\n<h2>Visual Studio Features</h2>\n\n<ul>\n<li>Select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a></li>\n<li>Snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </li>\n</ul>\n\n<h2>Framework</h2>\n\n<ul>\n<li><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a></li>\n<li><code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a></li>\n<li><code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a></li>\n<li><code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a></li>\n</ul>\n\n<h2>Methods and Properties</h2>\n\n<ul>\n<li><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581\">Will Dean</a></li>\n<li><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></li>\n<li><code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a></li>\n</ul>\n\n<h2>Tips &amp; Tricks</h2>\n\n<ul>\n<li>Nice method for event handlers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9282#9282\">Andreas H.R. Nilsson</a></li>\n<li>Uppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a></li>\n<li>Access anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a></li>\n<li>A quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></li>\n<li>JavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></li>\n</ul>\n\n<h2>Other</h2>\n\n<ul>\n<li>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a>  </li>\n<li><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>  </li>\n<li><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></li>\n</ul>\n",
      "comment": "added 86 characters in body",
      "creation_date": 1331141560,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<ul>\n<li><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></li>\n<li><code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a></li>\n<li><code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a></li>\n<li><code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a></li>\n<li><code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a></li>\n<li><code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a></li>\n<li><code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a></li>\n<li><code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a></li>\n<li><code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></li>\n</ul>\n\n<h2>Attributes</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a></li>\n<li><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></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a></li>\n<li><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></li>\n</ul>\n\n<h2>Syntax</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/ms173224.aspx\" rel=\"nofollow\"><code>??</code></a> (coalesce nulls) operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li>Number flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a></li>\n<li><code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a></li>\n<li>Implicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>One-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Auto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Namespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Verbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a></li>\n<li><code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a></li>\n<li>@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a></li>\n<li><code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a></li>\n<li>Format string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a></li>\n<li>Property accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a></li>\n<li>Conditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a></li>\n<li><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></li>\n<li><code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a></li>\n</ul>\n\n<h2>Language Features</h2>\n\n<ul>\n<li>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a></li>\n<li>Currying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a></li>\n<li>Anonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li><code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a></li>\n<li>Object initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a></li>\n<li>Format strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a></li>\n<li>Extension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a></li>\n<li>Preprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a></li>\n<li><code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a></li>\n<li>Operator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a></li>\n<li>Type inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a></li>\n<li>Boolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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></li>\n<li>Pass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a></li>\n<li>Programmatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a></li>\n<li>Static Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a></li>\n<li>Easier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></li>\n</ul>\n\n<h2>Visual Studio Features</h2>\n\n<ul>\n<li>Select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a></li>\n<li>Snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </li>\n</ul>\n\n<h2>Framework</h2>\n\n<ul>\n<li><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a></li>\n<li><code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a></li>\n<li><code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a></li>\n<li><code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a></li>\n</ul>\n\n<h2>Methods and Properties</h2>\n\n<ul>\n<li><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581\">Will Dean</a></li>\n<li><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></li>\n<li><code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a></li>\n</ul>\n\n<h2>Tips &amp; Tricks</h2>\n\n<ul>\n<li>Nice method for event handlers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9282#9282\">Andreas H.R. Nilsson</a></li>\n<li>Uppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a></li>\n<li>Access anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a></li>\n<li>A quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></li>\n<li>JavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></li>\n</ul>\n\n<h2>Other</h2>\n\n<ul>\n<li>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a>  </li>\n<li><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>  </li>\n<li><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></li>\n</ul>\n",
      "last_tags": [],
      "revision_guid": "602376f3-f75d-4c16-91aa-02af2ed34e74",
      "revision_number": 54,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 171819,
        "user_type": "registered",
        "display_name": "Zac Bowling",
        "reputation": 2296,
        "email_hash": "ba78b57d00a1ed5c2dd21c1feba778d6"
      },
      "post_id": 9033
    },
    {
      "comment": "edited tags",
      "creation_date": 1330867607,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [
        "c#",
        ".net",
        "tips-and-tricks",
        "hidden-features"
      ],
      "revision_guid": "ccc01b79-4a6c-4ea5-8756-51973142da10",
      "revision_number": 53,
      "tags": [
        "c#",
        "tips-and-tricks",
        "hidden-features"
      ],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 34509,
        "user_type": "registered",
        "display_name": "Johannes Schaub - litb",
        "reputation": 203195,
        "email_hash": "2385676760fc16f76a43f3319faaa843"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Closed as \"not constructive\"  by casperOne&#9830;",
      "creation_date": 1330534334,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "716b7a53-79fa-453b-ba66-c9ee040f0d83",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 50776,
        "user_type": "moderator",
        "display_name": "casperOne",
        "reputation": 44312,
        "email_hash": "1b2b5d5007262ea3f9e21ab5b15f8b75"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Reopened  by Neil N, ulrichb, Adam Rackis, Alan, Glenn Slaven",
      "creation_date": 1329451946,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "0a3d63ea-16ae-41a0-bfa7-c2b6c4f0ffc6",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": -1,
        "user_type": "moderator",
        "display_name": "Community",
        "reputation": 1,
        "email_hash": "a007be5a61f6aa8f3e85ae2fc18dd66e"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<ul>\n<li><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></li>\n<li><code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li><code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a></li>\n<li><code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a></li>\n<li><code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a></li>\n<li><code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a></li>\n<li><code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a></li>\n<li><code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a></li>\n<li><code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a></li>\n<li><code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></li>\n</ul>\n\n<h2>Attributes</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a></li>\n<li><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></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a></li>\n<li><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></li>\n</ul>\n\n<h2>Syntax</h2>\n\n<ul>\n<li><a href=\"http://msdn.microsoft.com/en-us/library/ms173224.aspx\" rel=\"nofollow\"><code>??</code></a> (coalesce nulls) operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a></li>\n<li>Number flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a></li>\n<li><code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a></li>\n<li>Implicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>One-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Auto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Namespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li>Verbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a></li>\n<li><code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a></li>\n<li>@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a></li>\n<li><code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a></li>\n<li>Format string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a></li>\n<li>Property accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a></li>\n<li>Conditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a></li>\n<li><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></li>\n<li><code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a></li>\n</ul>\n\n<h2>Language Features</h2>\n\n<ul>\n<li>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a></li>\n<li>Currying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a></li>\n<li>Anonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a></li>\n<li><code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a></li>\n<li>Object initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a></li>\n<li>Format strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a></li>\n<li>Extension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a></li>\n<li><code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a></li>\n<li>Preprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a></li>\n<li><code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a></li>\n<li>Operator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a></li>\n<li>Type inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a></li>\n<li>Boolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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></li>\n<li>Pass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a></li>\n<li>Programmatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a></li>\n<li>Static Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a></li>\n<li>Easier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></li>\n</ul>\n\n<h2>Visual Studio Features</h2>\n\n<ul>\n<li>Select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a></li>\n<li>Snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </li>\n</ul>\n\n<h2>Framework</h2>\n\n<ul>\n<li><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a></li>\n<li><code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a></li>\n<li><code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a></li>\n<li><code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a></li>\n</ul>\n\n<h2>Methods and Properties</h2>\n\n<ul>\n<li><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a></li>\n<li><code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581\">Will Dean</a></li>\n<li><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></li>\n<li><code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a></li>\n</ul>\n\n<h2>Tips &amp; Tricks</h2>\n\n<ul>\n<li>Nice method for event handlers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9282#9282\">Andreas H.R. Nilsson</a></li>\n<li>Uppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a></li>\n<li>Access anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a></li>\n<li>A quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></li>\n<li>JavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></li>\n</ul>\n\n<h2>Other</h2>\n\n<ul>\n<li>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a>  </li>\n<li><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>  </li>\n<li><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></li>\n</ul>\n",
      "comment": "Turned the lists into ... lists.",
      "creation_date": 1329169905,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/ms173224.aspx\" rel=\"nofollow\"><code>??</code></a> (coalesce nulls) operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nconditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "5238dc85-cc7a-42fc-9943-68874abc8f4f",
      "revision_number": 52,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 63550,
        "user_type": "registered",
        "display_name": "Peter Mortensen",
        "reputation": 6093,
        "email_hash": "78a0a4bb106d07b6c6f33a51988155e3"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Closed as \"not constructive\"  by Gilles, Tim Cooper, Lorem Ipsum, Joe, Wooble",
      "creation_date": 1329152918,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "cc50650e-4b21-4159-af2a-94786cbb1313",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": -1,
        "user_type": "moderator",
        "display_name": "Community",
        "reputation": 1,
        "email_hash": "a007be5a61f6aa8f3e85ae2fc18dd66e"
      },
      "post_id": 9033
    },
    {
      "comment": "Question Protected  by Robert Harvey&#9830;",
      "creation_date": 1329091317,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "1838efff-9ce9-4b2a-933b-f4c6f6628d5a",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 102937,
        "user_type": "moderator",
        "display_name": "Robert Harvey",
        "reputation": 83932,
        "email_hash": "1233ec65168f4aae4d939ae8fe6cde1e"
      },
      "post_id": 9033
    },
    {
      "comment": "Notice removed  Historical significance by Robert Harvey&#9830;",
      "creation_date": 1329091307,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "364e8036-5b71-49f6-82bc-e7a68a71d1d8",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 102937,
        "user_type": "moderator",
        "display_name": "Robert Harvey",
        "reputation": 83932,
        "email_hash": "1233ec65168f4aae4d939ae8fe6cde1e"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Unlocked  by Robert Harvey&#9830;",
      "creation_date": 1329091307,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "9d319954-652a-44bf-9ef8-11c4f1bcaf6b",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 102937,
        "user_type": "moderator",
        "display_name": "Robert Harvey",
        "reputation": 83932,
        "email_hash": "1233ec65168f4aae4d939ae8fe6cde1e"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Reopened  by Will&#9830;",
      "creation_date": 1317820881,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "c20b8062-84b6-4546-a44c-c433b1cb3855",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Notice added  Historical significance by Will&#9830;",
      "creation_date": 1317820812,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "50ed87b9-483f-4f36-90aa-76e6208679f4",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Locked  by Will&#9830;",
      "creation_date": 1317820812,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "098c69ef-fd36-470d-9165-00c9b976f4ca",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Closed as \"not constructive\"  by Will&#9830;",
      "creation_date": 1317820783,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "0471c5ae-6b4d-4cc2-9a1f-b41bea61085f",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Notice removed  Historical significance by Will&#9830;",
      "creation_date": 1317820771,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "8193708a-b98f-4ffe-be32-ef1268cb66db",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Unlocked  by Will&#9830;",
      "creation_date": 1317820771,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "9301c1f5-a85c-4a28-a05e-deb46c1675a6",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Locked  by Will&#9830;",
      "creation_date": 1317820725,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "dd3ce1b1-fa51-4468-b438-5452bc269f92",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Notice added  Historical significance by Will&#9830;",
      "creation_date": 1317820725,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "8ec11279-170a-4a2d-aa27-183667919b77",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Unlocked  by Will&#9830;",
      "creation_date": 1317820692,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "75c21d78-6d3a-4a5a-81d0-0611bec5f301",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Locked  by Jonathan Sampson",
      "creation_date": 1279217895,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "8cb2b0ce-40b9-4dc9-8426-d902139244ab",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": 54680,
        "user_type": "registered",
        "display_name": "Jonathan Sampson",
        "reputation": 93470,
        "email_hash": "3eada417ab749e3a7a5d51d451b2cc3a"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Reopened  by Ken Bloom, Jeff Yates, Aristos, AaronLS, Graviton",
      "creation_date": 1278988039,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "fe36f147-2ea4-44a4-ae1c-7d6e77c639de",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": -1,
        "user_type": "moderator",
        "display_name": "Community",
        "reputation": 1,
        "email_hash": "a007be5a61f6aa8f3e85ae2fc18dd66e"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Closed as \"not a real question\"  by dmckee, redsquare, Roger Pate, sth, Ether",
      "creation_date": 1278897431,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "5db57257-b9dd-4abd-9efc-af56bee76f4d",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": false,
      "user": {
        "user_id": -1,
        "user_type": "moderator",
        "display_name": "Community",
        "reputation": 1,
        "email_hash": "a007be5a61f6aa8f3e85ae2fc18dd66e"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/ms173224.aspx\" rel=\"nofollow\"><code>??</code></a> (coalesce nulls) operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nconditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "added 17 characters in body",
      "creation_date": 1278179355,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nconditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "cac00c1b-7535-4992-b656-a9c8147cec44",
      "revision_number": 51,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 111554,
        "user_type": "registered",
        "display_name": "jrista",
        "reputation": 18529,
        "email_hash": "61c2849189c1b8f261a85bb52618f0ac"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nconditional (ternary) operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "added 14 characters in body; edited tags",
      "creation_date": 1278089828,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [
        "c#",
        "hidden-features",
        ".net",
        "tips-and-tricks"
      ],
      "revision_guid": "20272932-7060-4b07-8ac1-498742e16ef1",
      "revision_number": 50,
      "tags": [
        "c#",
        ".net",
        "tips-and-tricks",
        "hidden-features"
      ],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 177333,
        "user_type": "registered",
        "display_name": "Nelson Rothermel",
        "reputation": 3375,
        "email_hash": "a89f2eeb8fee35c57f3a0f1e1c4ace17"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Minor edit: grammar/spelling/case/punctuation/etc.",
      "creation_date": 1274278865,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "7ae13de3-ba74-4975-9cf1-020c023aae20",
      "revision_number": 49,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 63550,
        "user_type": "registered",
        "display_name": "Peter Mortensen",
        "reputation": 6093,
        "email_hash": "78a0a4bb106d07b6c6f33a51988155e3"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Rollback to Revision 43",
      "creation_date": 1267301784,
      "is_question": true,
      "is_rollback": true,
      "last_body": "<p>This came to my mind after i learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n",
      "last_title": "Hidden Features of C#?",
      "last_tags": [
        "c#"
      ],
      "revision_guid": "224aafa8-06f1-4f43-a999-e8c4cbbb20cd",
      "revision_number": 48,
      "tags": [
        "c#",
        "hidden-features",
        ".net",
        "tips-and-tricks"
      ],
      "title": "Hidden Features of C#?",
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 231822,
        "user_type": "registered",
        "display_name": "Nevin Mathai",
        "reputation": 637,
        "email_hash": "9e3c635fb3243e874be1d10b042016cd"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after i learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n",
      "comment": "Rollback to Revision 1",
      "creation_date": 1267301765,
      "is_question": true,
      "is_rollback": true,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_title": "Hidden Features of C#",
      "last_tags": [
        "c#",
        "hidden-features",
        ".net",
        "tips-and-tricks"
      ],
      "revision_guid": "195116d2-b042-48bc-8aee-135e74f57a7b",
      "revision_number": 47,
      "tags": [
        "c#"
      ],
      "title": "Hidden Features of C#",
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 231822,
        "user_type": "registered",
        "display_name": "Nevin Mathai",
        "reputation": 637,
        "email_hash": "9e3c635fb3243e874be1d10b042016cd"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Rollback to Revision 44",
      "creation_date": 1267301710,
      "is_question": true,
      "is_rollback": true,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "02b3a568-d973-424e-b55a-5461de1ac06f",
      "revision_number": 46,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 231822,
        "user_type": "registered",
        "display_name": "Nevin Mathai",
        "reputation": 637,
        "email_hash": "9e3c635fb3243e874be1d10b042016cd"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Rollback to Revision 43",
      "creation_date": 1267301678,
      "is_question": true,
      "is_rollback": true,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "2b1da7cc-9a19-4478-89f7-729b8ac07826",
      "revision_number": 45,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 231822,
        "user_type": "registered",
        "display_name": "Nevin Mathai",
        "reputation": 637,
        "email_hash": "9e3c635fb3243e874be1d10b042016cd"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "added 9795 characters in body; deleted 9797 characters in body",
      "creation_date": 1267301510,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "e99cf175-ed22-475a-9f0d-b8c22beba31b",
      "revision_number": 44,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 231822,
        "user_type": "registered",
        "display_name": "Nevin Mathai",
        "reputation": 637,
        "email_hash": "9e3c635fb3243e874be1d10b042016cd"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx\" rel=\"nofollow\"><code>DefaultValueAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx\" rel=\"nofollow\"><code>ObsoleteAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerdisplayattribute.aspx\" rel=\"nofollow\"><code>DebuggerDisplayAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.threadstaticattribute%28VS.71%29.aspx\" rel=\"nofollow\"><code>ThreadStaticAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.flagsattribute.aspx\" rel=\"nofollow\"><code>FlagsAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Add link to msdn for attributes",
      "creation_date": 1264324932,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "ec1fcadd-ef0b-4a3c-be92-f1bf01299a80",
      "revision_number": 43,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 79708,
        "user_type": "registered",
        "display_name": "Sergej Andrejev",
        "reputation": 3482,
        "email_hash": "3b2aa7bd885243e5b80ea6239a5a6a89"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a><br>\nEasier-on-the-eyes / condensed ORM-mapping using LINQ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/2026781#2026781\">roosteronacid</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "added 166 characters in body",
      "creation_date": 1262945460,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "33b13808-2a9d-47e1-b397-2ad6f62b8e3d",
      "revision_number": 42,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 20946,
        "user_type": "registered",
        "display_name": "roosteronacid",
        "reputation": 8405,
        "email_hash": "d9f130255f9497985812c39fd22d2ee4"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a><br>\nStatic Constructors by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/100321#100321\">Chris</a></p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Added Static Constructors by Chris",
      "creation_date": 1262811629,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "5c01972b-d1b1-4aac-bf2e-ed8df1ba6bd8",
      "revision_number": 41,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 18821,
        "user_type": "registered",
        "display_name": "Nathan Koop",
        "reputation": 6285,
        "email_hash": "ec2b04ac1bad14fea8244a78ef0f2133"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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><br>\npass value-type variable as interface without boxing by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1820538#1820538\">Roman Boiko</a><br>\nprogrammatically determine declared variable type by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1789985#1789985\">Roman Boiko</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "added two links",
      "creation_date": 1259602451,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "d64e4412-da28-48fc-a6a3-4768fc8126c4",
      "revision_number": 40,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 118478,
        "user_type": "registered",
        "display_name": "Roman D. Boiko",
        "reputation": 1876,
        "email_hash": "f2f0ade98256549f941e92270ab32efd"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>select block of text in editor by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1699477#1699477\" title=\"block text selecting with alt key\">Himadri</a><br>\nsnippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "added new link",
      "creation_date": 1259069636,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "c17922a9-ca94-4cc1-a17d-38946780cc77",
      "revision_number": 39,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 118478,
        "user_type": "registered",
        "display_name": "Roman D. Boiko",
        "reputation": 1876,
        "email_hash": "f2f0ade98256549f941e92270ab32efd"
      },
      "post_id": 9033
    },
    {
      "comment": "Edited tags",
      "creation_date": 1256574585,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [
        "c#",
        "hidden-features",
        ".net"
      ],
      "revision_guid": "2b2ec46a-174f-4781-914a-17eba8d79944",
      "revision_number": 38,
      "tags": [
        "c#",
        "hidden-features",
        ".net",
        "tips-and-tricks"
      ],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 170339,
        "user_type": "registered",
        "display_name": "bludger",
        "reputation": 1924,
        "email_hash": "f21c140f5cef5682743467e942ac130a"
      },
      "post_id": 9033
    },
    {
      "comment": "edited tags",
      "creation_date": 1255119406,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [
        "c#",
        "hidden-features"
      ],
      "revision_guid": "39640db3-5aaf-4a89-ac3a-d50ed7db415b",
      "revision_number": 37,
      "tags": [
        "c#",
        "hidden-features",
        ".net"
      ],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 2688,
        "user_type": "registered",
        "display_name": "bdukes",
        "reputation": 39340,
        "email_hash": "f1df0c370bbfd32568f4914d9c771e9d"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Removed dupe",
      "creation_date": 1254403506,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a><br>\nShorter properties with private/public set/get by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1503789#1503789\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "87bc07ba-f8e0-4ccf-ac9b-6f928ea8bc6c",
      "revision_number": 36,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 20946,
        "user_type": "registered",
        "display_name": "roosteronacid",
        "reputation": 8405,
        "email_hash": "d9f130255f9497985812c39fd22d2ee4"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a><br>\nShorter properties with private/public set/get by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1503789#1503789\">roosteronacid</a>  </p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "added 161 characters in body; edited body",
      "creation_date": 1254401716,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "f15fd415-afc0-40e1-aa69-57559297d512",
      "revision_number": 35,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 20946,
        "user_type": "registered",
        "display_name": "roosteronacid",
        "reputation": 8405,
        "email_hash": "d9f130255f9497985812c39fd22d2ee4"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<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>\n\n<h2>Syntax</h2>\n\n<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>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Updated some links to more modern versions.",
      "creation_date": 1254076305,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/ms173224%28VS.80%29.aspx\" rel=\"nofollow\"><code>??</code></a> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "5010f100-751d-466a-94b8-100d5a6716fb",
      "revision_number": 34,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 174335,
        "user_type": "registered",
        "display_name": "Joren",
        "reputation": 6479,
        "email_hash": "ef4c1a32c167f4f0250d356e6d063b6f"
      },
      "post_id": 9033
    },
    {
      "comment": "Jeopardy compliance.",
      "creation_date": 1252786991,
      "is_question": true,
      "is_rollback": false,
      "last_title": "Hidden Features of C#?",
      "last_tags": [],
      "revision_guid": "86b8fc93-18ed-4eed-8689-c5e79cda4392",
      "revision_number": 33,
      "tags": [],
      "title": "Hidden Features of C#?",
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 63550,
        "user_type": "registered",
        "display_name": "Peter Mortensen",
        "reputation": 6093,
        "email_hash": "78a0a4bb106d07b6c6f33a51988155e3"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<p><br /></p>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/ms173224%28VS.80%29.aspx\" rel=\"nofollow\"><code>??</code></a> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a><br>\nJavaScript-like anonymous inline-functions by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130\">roosteronacid</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "Added &quot;JavaScript-like anonymous inline-functions&quot; to the TOC",
      "creation_date": 1252496127,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/ms173224%28VS.80%29.aspx\" rel=\"nofollow\"><code>??</code></a> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "bb4b6add-4656-4f02-871b-81ace6b790b9",
      "revision_number": 32,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 20946,
        "user_type": "registered",
        "display_name": "roosteronacid",
        "reputation": 8405,
        "email_hash": "d9f130255f9497985812c39fd22d2ee4"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/ms173224%28VS.80%29.aspx\" rel=\"nofollow\"><code>??</code></a> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "edit no-op to fix truncated content",
      "creation_date": 1251370583,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/ms173224%28VS.80%29.aspx\" rel=\"nofollow\"><code>??</code></a> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [
        "c#",
        "hidden-features"
      ],
      "revision_guid": "f8918b4f-068a-418d-87e1-b0f5928a29ea",
      "revision_number": 31,
      "tags": [
        "c#",
        "hidden-features"
      ],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 136681,
        "user_type": "registered",
        "display_name": "Ola Herrdahl",
        "reputation": 761,
        "email_hash": "91cfb38f1860f2cd2f0b4f307b421f3f"
      },
      "post_id": 9033
    },
    {
      "comment": "edited title; edited title",
      "creation_date": 1250853853,
      "is_question": true,
      "is_rollback": false,
      "last_title": "Hidden Features of C#",
      "last_tags": [],
      "revision_guid": "21d625b8-19ab-430b-ac34-ae28d126de1e",
      "revision_number": 30,
      "tags": [],
      "title": "Hidden Features of C#",
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 41956,
        "user_type": "registered",
        "display_name": "abatishchev",
        "reputation": 34504,
        "email_hash": "b9da2ca6abf3a1e28fb470f2b3ae2c34"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/ms173224%28VS.80%29.aspx\" rel=\"nofollow\"><code>??</code></a> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "added MSDN link for ?? operator",
      "creation_date": 1246381116,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "a2c8e545-568e-42a3-9901-0f59badba368",
      "revision_number": 29,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 423,
        "user_type": "registered",
        "display_name": "bcwood",
        "reputation": 3328,
        "email_hash": "4561034d23bfa2779d77b13deb9c77a8"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>?:</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "edited body",
      "creation_date": 1244935547,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "last_tags": [],
      "revision_guid": "fc1a471a-62d7-4835-92a1-7cefa1237502",
      "revision_number": 28,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042\">KiwiBastard</a><br>\n<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>\n<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>\n<code>GetValueOrDefault</code> method by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<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>\nuppercase comparisons by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<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>\n<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>\n",
      "comment": "updated more links",
      "creation_date": 1244475752,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;.Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "1764cfee-6a51-4f21-895c-4e63bdd30db0",
      "revision_number": 27,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 50890,
        "user_type": "registered",
        "display_name": "ulrichb",
        "reputation": 7137,
        "email_hash": "0ff4ccc86cc2168044e311f45ad291ef"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-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>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;.Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "updated more links",
      "creation_date": 1244475321,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;.Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "83df3e7f-7692-4c3c-8d7e-97cd06324e8e",
      "revision_number": 26,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 50890,
        "user_type": "registered",
        "display_name": "ulrichb",
        "reputation": 7137,
        "email_hash": "0ff4ccc86cc2168044e311f45ad291ef"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.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>\n<code>var</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#9048\">Stu</a><br>\n<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>\n<code>ThreadStaticAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;.Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "updated more links (all links in the &quot;attributes&quot; section)",
      "creation_date": 1244474632,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;.Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "b1ffc6f1-33fc-455b-a901-2c8ffc9f6e6a",
      "revision_number": 25,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 50890,
        "user_type": "registered",
        "display_name": "ulrichb",
        "reputation": 7137,
        "email_hash": "0ff4ccc86cc2168044e311f45ad291ef"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;.Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "deleted 1 characters in body",
      "creation_date": 1244474174,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "3e93f0ac-a4bc-478d-9e6b-4341a2ecae36",
      "revision_number": 24,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 45914,
        "user_type": "registered",
        "display_name": "Jason",
        "reputation": 95703,
        "email_hash": "196d8ff7c64cc3a1fdd57bb8d054bbf2"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nauto properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "updated more links (all links in the &quot;syntax&quot; section)",
      "creation_date": 1244473987,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "60240f0e-d809-4d1f-96e5-17fda4b926a3",
      "revision_number": 23,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 50890,
        "user_type": "registered",
        "display_name": "ulrichb",
        "reputation": 7137,
        "email_hash": "0ff4ccc86cc2168044e311f45ad291ef"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a><br>\n<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>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "repaired checked/unchecked link",
      "creation_date": 1244068457,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a><br>\n<code>checked</code> and <code>unchecked</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/365801#355991\">Binoj Antony</a><br>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [
        "c#",
        "hidden-features"
      ],
      "revision_guid": "611d038f-734d-4624-9578-5d2deb9570f3",
      "revision_number": 22,
      "tags": [
        "c#",
        "hidden-features"
      ],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 50890,
        "user_type": "registered",
        "display_name": "ulrichb",
        "reputation": 7137,
        "email_hash": "0ff4ccc86cc2168044e311f45ad291ef"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a></p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a><br>\n<code>checked</code> and <code>unchecked</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/365801#355991\">Binoj Antony</a><br>\n<code>implicit and explicit</code> operators by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470\">Flory</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "added 4 characters in body",
      "creation_date": 1240490278,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a><br>\n<code>checked</code> and <code>unchecked</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/365801#355991\">Binoj Antony</a></p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "697a59e4-4ec0-40bc-aee2-5938a7d2999c",
      "revision_number": 21,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 44389,
        "user_type": "registered",
        "display_name": "Noldorin",
        "reputation": 54015,
        "email_hash": "eed60bdfc964ec62cc48aa6020a03d7b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a><br>\n<code>checked</code> and <code>unchecked</code> operator by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c/365801#355991\">Binoj Antony</a></p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "added info",
      "creation_date": 1235198652,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "4ecac6a5-c162-404a-8c15-84d1e1d2481d",
      "revision_number": 20,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 33015,
        "user_type": "registered",
        "display_name": "Binoj Antony",
        "reputation": 6535,
        "email_hash": "ea4d75f79969b8b8cfe801198ac99abb"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\n<code>Nullable&lt;T&gt;.HasValue</code> and <code>Nullable&lt;T&gt;. Value</code> properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "added 138 characters in body",
      "creation_date": 1232534213,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&amp;lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by [Will Dean][\n<code>Nullable&amp;ltT&gt;.HasValue</code> and <code>Nullable&amp;ltT&gt;. Value</code> properties by [Rismo]<a href=\"http://www.stackoverflow.com/questions/9033#15393\">67</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "a5114716-a5c7-43ef-a54c-aa5c69ebc775",
      "revision_number": 19,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 41283,
        "user_type": "registered",
        "display_name": "Hosam Aly",
        "reputation": 10916,
        "email_hash": "62af4c828e18a91dc60832fb1465f0cf"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern alias</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&amp;lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by [Will Dean][\n<code>Nullable&amp;ltT&gt;.HasValue</code> and <code>Nullable&amp;ltT&gt;. Value</code> properties by [Rismo]<a href=\"http://www.stackoverflow.com/questions/9033#15393\">67</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "edited body",
      "creation_date": 1232027542,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern</code> alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&amp;lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by [Will Dean][\n<code>Nullable&amp;ltT&gt;.HasValue</code> and <code>Nullable&amp;ltT&gt;. Value</code> properties by [Rismo]<a href=\"http://www.stackoverflow.com/questions/9033#15393\">67</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "90a591ba-8eb1-4706-9a07-7df92a343eff",
      "revision_number": 18,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 2361,
        "user_type": "registered",
        "display_name": "Jakub Šturc",
        "reputation": 9245,
        "email_hash": "66f2beb2b2f73911a208fee4e1e9ab20"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\"><code>yield</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>var</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\n<code>using()</code> statement by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>readonly</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\n<code>as</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\n<code>as</code> / <code>is</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\n<code>as</code> / <code>is</code> (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\n<code>default</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\n<code>global::</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\n<code>using()</code> blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\n<code>volatile</code> by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\n<code>extern</code> alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p><code>DefaultValue</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\n<code>ObsoleteAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\n<code>DebuggerDisplayAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<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://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\n<code>ThreadStaticAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\n<code>FlagsAttribute</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\"><code>ConditionalAttribute</code></a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p><code>??</code> operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\n<code>where T:new</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none-parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nverbatim string literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\n<code>enum</code> values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\n<code>event</code> operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty accessor accessibility modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator (<code>:?</code>) by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n<code>__makeref __reftype __refvalue</code> by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\n<code>partial</code> methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\n<code>DEBUG</code> pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p><code>TransactionScope</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>DependantTransaction</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\n<code>Nullable&amp;lt;T&gt;</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\n<code>Mutex</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\n<code>System.IO.Path</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\n<code>WeakReference</code> by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p><code>String.IsNullOrEmpty()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>List.ForEach()</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\n<code>BeginInvoke()</code>, <code>EndInvoke()</code> methods by [Will Dean][\n<code>Nullable&amp;ltT&gt;.HasValue</code> and <code>Nullable&amp;ltT&gt;. Value</code> properties by [Rismo]<a href=\"http://www.stackoverflow.com/questions/9033#15393\">67</a><br>\n<code>GetValueOrDefault</code> method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "formatting",
      "creation_date": 1229999984,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\nvar by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\nusing by by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nreadonly by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nas keyword by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\nas is by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\ndefault by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\nglobal by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\nusing blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\nvolatile by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\nextern alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p>DefaultValue by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\nObsoleteAttribute by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\nThreadStatic by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\nFlags by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p>?? operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nstring literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\nenum values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\nevent operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\npartial methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p>TransactionScope by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\nNullable&lt;T> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\nMutex by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\nWeakReference by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "f7f70d2f-eb6f-42e3-a249-cfad3f30724f",
      "revision_number": 17,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 5314,
        "user_type": "registered",
        "display_name": "Jay Bazuzi",
        "reputation": 17551,
        "email_hash": "59ca40f0fafad6de52790016d2195abc"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://www.stackoverflow.com/questions/8941/generic-type-checking\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?</p>\n\n<h1>Here are the revealed features so far:</h1>\n\n<h2>Keywords</h2>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\nvar by <a href=\"http://www.stackoverflow.com/questions/9033#9035\">Michael Stum</a><br>\nusing by by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nreadonly by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nas keyword by <a href=\"http://www.stackoverflow.com/questions/9033#9041\">Mike Stone</a><br>\nas is by <a href=\"http://www.stackoverflow.com/questions/9033?#9070\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://www.stackoverflow.com/questions/9033?#9092\">Rocketpants</a><br>\ndefault by <a href=\"http://www.stackoverflow.com/questions/9033?#9639\">deathofrats</a><br>\nglobal by <a href=\"http://www.stackoverflow.com/questions/9033?#12152\">pzycoman</a><br>\nusing blocks by <a href=\"http://www.stackoverflow.com/questions/9033#12316\">AlexCuse</a><br>\nvolatile by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\nextern alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<h2>Attributes</h2>\n\n<p>DefaultValue by <a href=\"http://www.stackoverflow.com/questions/9033?#9035\">Michael Stum</a><br>\nObsoleteAttribute by <a href=\"http://www.stackoverflow.com/questions/9033?#9037\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://www.stackoverflow.com/questions/9033?#9048\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474\">bdukes</a><br>\nThreadStatic by <a href=\"http://www.stackoverflow.com/questions/9033?#13932\">marxidad</a><br>\nFlags by <a href=\"http://www.stackoverflow.com/questions/9033?#21752\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://www.stackoverflow.com/questions/9033#35342\">AndrewBurns</a></p>\n\n<h2>Syntax</h2>\n\n<p>?? operator by <a href=\"http://www.stackoverflow.com/questions/9033#9036\">kokos</a><br>\nnumber flaggings by <a href=\"http://www.stackoverflow.com/questions/9033#9038\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://www.stackoverflow.com/questions/9033#9067\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\none parameter lambdas by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nauto properties by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nnamespace aliases by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\nstring literals with @ by <a href=\"http://www.stackoverflow.com/questions/9033#9114\">Patrick</a><br>\nenum values by <a href=\"http://www.stackoverflow.com/questions/9033#11738\">lfoust</a><br>\n@variablenames by <a href=\"http://www.stackoverflow.com/questions/9033#14088\">marxidad</a><br>\nevent operators by <a href=\"http://www.stackoverflow.com/questions/9033#14277\">marxidad</a><br>\nformat string brackets by <a href=\"http://www.stackoverflow.com/questions/9033#15321\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://www.stackoverflow.com/questions/9033#15715\">xanadont</a><br>\nternary operator by <a href=\"http://www.stackoverflow.com/questions/9033#16450\">JasonS</a>  </p>\n\n<h2>Language Features</h2>\n\n<p>Nullable types by <a href=\"http://www.stackoverflow.com/questions/9033#9055\">Brad Barker</a><br>\nCurrying by <a href=\"http://www.stackoverflow.com/questions/9033#9066\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://www.stackoverflow.com/questions/9033#9099\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://www.stackoverflow.com/questions/9033#9125\">Judah Himango</a><br>\nobject initializers by <a href=\"http://www.stackoverflow.com/questions/9033#9547\">lomaxx</a><br>\nformat strings by <a href=\"http://www.stackoverflow.com/questions/9033#10207\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://www.stackoverflow.com/questions/9033#13932\">marxidad</a><br>\npartial methods by <a href=\"http://www.stackoverflow.com/questions/9033#16395\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://www.stackoverflow.com/questions/9033#16482\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://www.stackoverflow.com/questions/9033#24914\">SefBkn</a><br>\ntype inferrence by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://www.stackoverflow.com/questions/9033#32148\">Rob Gough</a>  </p>\n\n<h2>Visual Studio Features</h2>\n\n<p>snippets by <a href=\"http://www.stackoverflow.com/questions/9033?sort=newest#9037\">DannySmurf</a>  </p>\n\n<h2>Framework</h2>\n\n<p>TransactionScope by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://www.stackoverflow.com/questions/9033?#9042\">KiwiBastard</a><br>\nNullable&lt;T> by <a href=\"http://www.stackoverflow.com/questions/9033?#9118\">IainMH</a><br>\nMutex by <a href=\"http://www.stackoverflow.com/questions/9033?#9181\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://www.stackoverflow.com/questions/9033?#9401\">ageektrapped</a><br>\nWeakReference by <a href=\"http://www.stackoverflow.com/questions/9033?#14723\">Juan Manuel</a>  </p>\n\n<h2>Methods and Properties</h2>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://www.stackoverflow.com/questions/9033#9042\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://www.stackoverflow.com/questions/9033#9581\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://www.stackoverflow.com/questions/9033#15393\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://www.stackoverflow.com/questions/9033#18158\">John Sheehan</a>  </p>\n\n<h2>Tips &amp; Tricks</h2>\n\n<p>nice method for event handlers by <a href=\"http://www.stackoverflow.com/questions/9033#9282\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://www.stackoverflow.com/questions/9033#12137\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://www.stackoverflow.com/questions/9033#13441\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<h2>Other</h2>\n\n<p>netmodules by <a href=\"http://www.stackoverflow.com/questions/9033?#9036\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://www.stackoverflow.com/questions/9033?#10886\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293\">Joel Coehoorn</a></p>\n",
      "comment": "formatting, stop using beta SO links",
      "creation_date": 1229999434,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a><br>\nvolatile by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\nextern alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoleteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "33cd91ff-98b7-4c8e-9623-032d145ccec2",
      "revision_number": 16,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 5314,
        "user_type": "registered",
        "display_name": "Jay Bazuzi",
        "reputation": 17551,
        "email_hash": "59ca40f0fafad6de52790016d2195abc"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a><br>\nvolatile by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\nextern alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoleteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "&amp;amp;lt; entity is better than inserting a random .",
      "creation_date": 1227339606,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a><br>\nvolatile by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\nextern alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoleteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "03f68ff9-815c-450c-bc99-04259af31a51",
      "revision_number": 15,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 3712,
        "user_type": "registered",
        "display_name": "Barry Kelly",
        "reputation": 28695,
        "email_hash": "2facd380c5bdfbaa1a1e9c657578f135"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declarations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a><br>\nvolatile by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\nextern alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoleteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "spelling",
      "creation_date": 1225841237,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a><br>\nvolatile by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\nextern alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "3aa102f3-13b7-45ca-b8f3-727198899ed1",
      "revision_number": 14,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 16076,
        "user_type": "registered",
        "display_name": "Mitch Wheat",
        "reputation": 138290,
        "email_hash": "bf491c31ba2b4018e150397ba2e4f80b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a><br>\nvolatile by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#59691\">Jakub Šturc</a><br>\nextern alias by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#37926\">Jakub Šturc</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "added mine stuff ;-)",
      "creation_date": 1223989145,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "c7ad13fd-8792-4d2f-b429-062ab9afc7f4",
      "revision_number": 13,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 2361,
        "user_type": "registered",
        "display_name": "Jakub Šturc",
        "reputation": 9245,
        "email_hash": "66f2beb2b2f73911a208fee4e1e9ab20"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a><br>\na quick way to lazily instantiate collection properties by <a href=\"http://stackoverflow.com/questions/9033/hidden-features-of-c#58945\">Will</a></p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "Fixed my entry",
      "creation_date": 1222462789,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "52ce75ba-a9e0-446f-a28c-55a491c03299",
      "revision_number": 12,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 1228,
        "user_type": "moderator",
        "display_name": "Will",
        "reputation": 64246,
        "email_hash": "3568876d79f0551ec5d77652eb8ae9ef"
      },
      "post_id": 9033
    },
    {
      "comment": "edited tags",
      "creation_date": 1222158976,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [
        "c#",
        "features"
      ],
      "revision_guid": "fd2f465c-f839-4c96-9396-53680d610201",
      "revision_number": 11,
      "tags": [
        "c#",
        "hidden-features"
      ],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "comment": "edited tags",
      "creation_date": 1222110511,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [
        "c#"
      ],
      "revision_guid": "076e6546-c6b6-43e8-98ec-29892a745590",
      "revision_number": 10,
      "tags": [
        "c#",
        "features"
      ],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 1782,
        "user_type": "registered",
        "display_name": "jmfsg",
        "reputation": 12463,
        "email_hash": "4dfc8f56817006ef21327d5ff19ce04f"
      },
      "post_id": 9033
    },
    {
      "comment": "Post Made Community Wiki by question having more than 30 answers",
      "creation_date": 1221810492,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "f8ac1cb4-9a18-412a-83a1-ae14c79f6d38",
      "tags": [],
      "revision_type": "vote_based",
      "set_community_wiki": true,
      "user": {
        "user_id": -1,
        "user_type": "moderator",
        "display_name": "Community",
        "reputation": 1,
        "email_hash": "a007be5a61f6aa8f3e85ae2fc18dd66e"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx\" rel=\"nofollow\">Conditional</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#35342\" rel=\"nofollow\">AndrewBurns</a></p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "added info",
      "creation_date": 1220133765,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "8289ccb3-5ae1-41f3-a210-5af5ad998337",
      "revision_number": 9,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a>  </p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx\" rel=\"nofollow\">DebuggerBrowsable</a> and <a href=\"http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx\" rel=\"nofollow\">DebuggerStepThrough</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#33474\" rel=\"nofollow\">bdukes</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "added info",
      "creation_date": 1220036248,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "63b78528-8029-4a45-83b3-fa0cb75e198e",
      "revision_number": 8,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033#12316\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a><br>\nboolean operators <a href=\"http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm\" rel=\"nofollow\">taken to next level</a> by <a href=\"http://beta.stackoverflow.com/questions/9033#32148\" rel=\"nofollow\">Rob Gough</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "removed parens, prevented redirecting on link clicks, added info",
      "creation_date": 1219945888,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12316=newest#9035\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "5f96919e-6308-445c-84c5-b17474df6b9b",
      "revision_number": 7,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12316=newest#9035\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "escape parens in URLS using %28 and %29",
      "creation_date": 1219920618,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12316=newest#9035\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "last_tags": [],
      "revision_guid": "67930917-8ab6-4f26-8ab8-19c3f336ebb6",
      "revision_number": 6,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 1,
        "user_type": "moderator",
        "display_name": "Jeff Atwood",
        "reputation": 25865,
        "email_hash": "51d623f33f8b83095db84ff35e15dbe8"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12316=newest#9035\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10886\" rel=\"nofollow\">Duncan Smart</a><br>\n<a href=\"http://msdn.microsoft.com/en-us/concurrency/default.aspx\" rel=\"nofollow\">Parallel Extensions</a> by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#31293\" rel=\"nofollow\">Joel Coehoorn</a></p>\n",
      "comment": "add info",
      "creation_date": 1219908687,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12316=newest#9035\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10886\" rel=\"nofollow\">Duncan Smart</a>  </p>\n",
      "last_tags": [],
      "revision_guid": "8b2f869b-27ec-4389-858c-f1da696635fa",
      "revision_number": 5,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12316=newest#9035\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10886\" rel=\"nofollow\">Duncan Smart</a>  </p>\n",
      "comment": "format correction",
      "creation_date": 1219833159,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12316=newest#9035\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a> \nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10886\" rel=\"nofollow\">Duncan Smart</a>  </p>\n",
      "last_tags": [],
      "revision_guid": "73b1343a-82f2-47f7-b76a-0f2c334ca650",
      "revision_number": 4,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n\n<p><em>Here are the revealed features so far:</em></p>\n\n<p><strong>Keywords</strong></p>\n\n<p><a href=\"http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx\" rel=\"nofollow\">yield</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nvar by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nusing by by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nreadonly by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\nas keyword by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9041\" rel=\"nofollow\">Mike Stone</a><br>\nas is by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9070\" rel=\"nofollow\">Ed Swangren</a><br>\nas is (improved) by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9092\" rel=\"nofollow\">Rocketpants</a><br>\ndefault by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9639\" rel=\"nofollow\">deathofrats</a><br>\nglobal by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12152\" rel=\"nofollow\">pzycoman</a><br>\nusing blocks by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12316=newest#9035\" rel=\"nofollow\">AlexCuse</a></p>\n\n<p><strong>Attributes</strong></p>\n\n<p>DefaultValue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9035\" rel=\"nofollow\">Michael Stum</a><br>\nObsoloteAttribute by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a><br>\nDebuggerDisplay by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9048\" rel=\"nofollow\">Stu</a><br>\nThreadStatic by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\nFlags by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#21752\" rel=\"nofollow\">Martin Clarke</a>  </p>\n\n<p><strong>Syntax</strong></p>\n\n<p>?? operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a> \nnumber flaggings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9038\" rel=\"nofollow\">Nick Berardi</a><br>\nwhere T:new by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9067\" rel=\"nofollow\">Lars Mæhlum</a><br>\nimplicit generics by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\none parameter lambdas by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nauto properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nnamespace aliases by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\nstring literals with @ by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9114\" rel=\"nofollow\">Patrick</a><br>\nenum values by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#11738\" rel=\"nofollow\">lfoust</a><br>\n@variablenames by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14088\" rel=\"nofollow\">marxidad</a><br>\nevent operators by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14277\" rel=\"nofollow\">marxidad</a><br>\nformat string brackets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15321\" rel=\"nofollow\">Portman</a><br>\nproperty setter modifiers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15715\" rel=\"nofollow\">xanadont</a><br>\nternary operator by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16450\" rel=\"nofollow\">JasonS</a>  </p>\n\n<p><strong>Language Features</strong></p>\n\n<p>Nullable types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9055\" rel=\"nofollow\">Brad Barker</a><br>\nCurrying by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9066\" rel=\"nofollow\">Brian Leahy</a><br>\nanonymous types by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9099\" rel=\"nofollow\">Keith</a><br>\n__makeref __reftype __refvalue by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9125\" rel=\"nofollow\">Judah Himango</a><br>\nobject initializers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9547\" rel=\"nofollow\">lomaxx</a><br>\nformat strings by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10207\" rel=\"nofollow\">David in Dakota</a><br>\nExtension Methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13932\" rel=\"nofollow\">marxidad</a><br>\npartial methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16395\" rel=\"nofollow\">Jon Erickson</a><br>\npreprocessor directives by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#16482\" rel=\"nofollow\">John Asbeck</a><br>\nDEBUG pre-processor directive by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#29081\" rel=\"nofollow\">Robert Durgin</a><br>\noperator overloading by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#24914\" rel=\"nofollow\">SefBkn</a><br>\ntype inferrence by <a href=\"http://beta.stackoverflow.com/questions/9033/hidden-features-of-c#28811\" rel=\"nofollow\">chakrit</a>  </p>\n\n<p><strong>Visual Studio Features</strong></p>\n\n<p>snippets by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9037\" rel=\"nofollow\">DannySmurf</a>  </p>\n\n<p><strong>Framework</strong></p>\n\n<p>TransactionScope by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nDependantTransaction by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nNullable&lt;.T> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9118\" rel=\"nofollow\">IainMH</a><br>\nMutex by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9181\" rel=\"nofollow\">Diago</a><br>\nSystem.IO.Path by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9401\" rel=\"nofollow\">ageektrapped</a><br>\nWeakReference by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#14723\" rel=\"nofollow\">Juan Manuel</a>  </p>\n\n<p><strong>Methods and Properties</strong></p>\n\n<p>String.IsNullOrEmpty method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nList.ForEach method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9042\" rel=\"nofollow\">KiwiBastard</a><br>\nBeginInvoke, EndInvoke methods by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9581\" rel=\"nofollow\">Will Dean</a><br>\nHasValue and Value properties by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#15393\" rel=\"nofollow\">Rismo</a><br>\nGetValueOrDefault method by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#18158\" rel=\"nofollow\">John Sheehan</a>  </p>\n\n<p><strong>Tips &amp; Tricks</strong></p>\n\n<p>nice method for event handlers by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9282\" rel=\"nofollow\">Andreas H.R. Nilsson</a><br>\nuppercase comparisons by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#12137\" rel=\"nofollow\">John</a><br>\naccess anonymous types without reflection by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#13441\" rel=\"nofollow\">dp</a>  </p>\n\n<p><strong>Other</strong></p>\n\n<p>netmodules by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#9036\" rel=\"nofollow\">kokos</a><br>\n<a href=\"http://www.albahari.com/nutshell/linqbridge.html\" rel=\"nofollow\">LINQBridge</a> by <a href=\"http://beta.stackoverflow.com/questions/9033?sort=newest#10886\" rel=\"nofollow\">Duncan Smart</a>  </p>\n",
      "comment": "summarized answers",
      "creation_date": 1219827563,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n",
      "last_tags": [],
      "revision_guid": "71910c2f-2e21-45bd-afe4-b0e5e72763a7",
      "revision_number": 3,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after I learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n",
      "comment": "",
      "creation_date": 1218612693,
      "is_question": true,
      "is_rollback": false,
      "last_body": "<p>This came to my mind after i learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n",
      "last_tags": [],
      "revision_guid": "683236af-9cf8-461b-a85e-de30c7cdf446",
      "revision_number": 2,
      "tags": [],
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    },
    {
      "body": "<p>This came to my mind after i learned the following from <a href=\"http://beta.stackoverflow.com/questions/8941/generic-type-checking\" rel=\"nofollow\">this question</a>:</p>\n\n<pre><code>where T : struct\n</code></pre>\n\n<p>We, c# developers, all know the basics of c#. I mean declerations, conditionals, loops, operators, etc.</p>\n\n<p>Some of us even mastered the stuff like <a href=\"http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.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>\n\n<p>But what are the most hidden features or tricks of c# that even c# fans, addicts, experts barely know?</p>\n",
      "comment": "",
      "creation_date": 1218558744,
      "is_question": true,
      "is_rollback": false,
      "last_tags": [],
      "revision_guid": "9c994321-143c-45a8-abc1-c9c044e68961",
      "revision_number": 1,
      "tags": [
        "c#"
      ],
      "title": "Hidden Features of C#",
      "revision_type": "single_user",
      "set_community_wiki": false,
      "user": {
        "user_id": 31505,
        "user_type": "registered",
        "display_name": "Serhat Özgel",
        "reputation": 8970,
        "email_hash": "5201af5d797f49f55d59a0485fd8023b"
      },
      "post_id": 9033
    }
  ]
}
