This came to my mind after I learned the following from [this question][1]:
where T : struct
We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.
Some of us even mastered the stuff like [Generics][2], [anonymous types][3], [lambdas][4], [linq][5], ...
But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?
Here are the revealed features so far:
=
Keywords
-
[`yield`][6] by [Michael Stum][7]
`var` by [Michael Stum][8]
`using()` statement by [kokos][9]
`readonly` by [kokos][10]
`as` by [Mike Stone][11]
`as` / `is` by [Ed Swangren][12]
`as` / `is` (improved) by [Rocketpants][13]
`default` by [deathofrats][14]
`global::` by [pzycoman][15]
`using()` blocks by [AlexCuse][16]
`volatile` by [Jakub Šturc][17]
`extern alias` by [Jakub Šturc][18]
Attributes
-
`DefaultValue` by [Michael Stum][19]
`ObsoleteAttribute` by [DannySmurf][20]
`DebuggerDisplayAttribute` by [Stu][21]
[`DebuggerBrowsable`][22] and [`DebuggerStepThrough`][23] by [bdukes][24]
`ThreadStaticAttribute` by [marxidad][25]
`FlagsAttribute` by [Martin Clarke][26]
[`ConditionalAttribute`][27] by [AndrewBurns][28]
Syntax
-
`??` operator by [kokos][29]
number flaggings by [Nick Berardi][30]
`where T:new` by [Lars Mæhlum][31]
implicit generics by [Keith][32]
one-parameter lambdas by [Keith][33]
auto properties by [Keith][34]
namespace aliases by [Keith][35]
verbatim string literals with @ by [Patrick][36]
`enum` values by [lfoust][37]
@variablenames by [marxidad][38]
`event` operators by [marxidad][39]
format string brackets by [Portman][40]
property accessor accessibility modifiers by [xanadont][41]
ternary operator (`:?`) by [JasonS][42]
`checked` and `unchecked` operator by [Binoj Antony][78]
Language Features
-
Nullable types by [Brad Barker][43]
Currying by [Brian Leahy][44]
anonymous types by [Keith][45]
`__makeref __reftype __refvalue` by [Judah Himango][46]
object initializers by [lomaxx][47]
format strings by [David in Dakota][48]
Extension Methods by [marxidad][49]
`partial` methods by [Jon Erickson][50]
preprocessor directives by [John Asbeck][51]
`DEBUG` pre-processor directive by [Robert Durgin][52]
operator overloading by [SefBkn][53]
type inferrence by [chakrit][54]
boolean operators [taken to next level][55] by [Rob Gough][56]
Visual Studio Features
-
snippets by [DannySmurf][57]
Framework
-
`TransactionScope` by [KiwiBastard][58]
`DependantTransaction` by [KiwiBastard][59]
`Nullable<T>` by [IainMH][60]
`Mutex` by [Diago][61]
`System.IO.Path` by [ageektrapped][62]
`WeakReference` by [Juan Manuel][63]
Methods and Properties
-
`String.IsNullOrEmpty()` method by [KiwiBastard][64]
`List.ForEach()` method by [KiwiBastard][65]
`BeginInvoke()`, `EndInvoke()` methods by [Will Dean][66]
`Nullable<T>.HasValue` and `Nullable<T>. Value` properties by [Rismo][67]
`GetValueOrDefault` method by [John Sheehan][68]
Tips & Tricks
-
nice method for event handlers by [Andreas H.R. Nilsson][69]
uppercase comparisons by [John][70]
access anonymous types without reflection by [dp][71]
a quick way to lazily instantiate collection properties by [Will][72]
Other
-
netmodules by [kokos][73]
[LINQBridge][74] by [Duncan Smart][75]
[Parallel Extensions][76] by [Joel Coehoorn][77]
[1]: http://www.stackoverflow.com/questions/8941/generic-type-checking
[2]: http://msdn.microsoft.com/en-us/library/512aeb7t%28VS.80%29.aspx
[3]: http://msdn.microsoft.com/en-us/library/bb397696.aspx
[4]: http://msdn.microsoft.com/en-us/library/bb397687.aspx
[5]: http://msdn.microsoft.com/en-us/library/bb397676.aspx
[6]: http://msdn.microsoft.com/en-us/library/9k7k7cf0%28VS.80%29.aspx
[7]: http://www.stackoverflow.com/questions/9033#9035
[8]: http://www.stackoverflow.com/questions/9033#9035
[9]: http://www.stackoverflow.com/questions/9033#9036
[10]: http://www.stackoverflow.com/questions/9033#9036
[11]: http://www.stackoverflow.com/questions/9033#9041
[12]: http://www.stackoverflow.com/questions/9033?#9070
[13]: http://www.stackoverflow.com/questions/9033?#9092
[14]: http://www.stackoverflow.com/questions/9033?#9639
[15]: http://www.stackoverflow.com/questions/9033?#12152
[16]: http://www.stackoverflow.com/questions/9033#12316
[17]: http://stackoverflow.com/questions/9033/hidden-features-of-c#59691
[18]: http://stackoverflow.com/questions/9033/hidden-features-of-c#37926
[19]: http://www.stackoverflow.com/questions/9033?#9035
[20]: http://www.stackoverflow.com/questions/9033?#9037
[21]: http://www.stackoverflow.com/questions/9033?#9048
[22]: http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx
[23]: http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx
[24]: http://www.stackoverflow.com/questions/9033/hidden-features-of-c#33474
[25]: http://www.stackoverflow.com/questions/9033?#13932
[26]: http://www.stackoverflow.com/questions/9033?#21752
[27]: http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx
[28]: http://www.stackoverflow.com/questions/9033#35342
[29]: http://www.stackoverflow.com/questions/9033#9036
[30]: http://www.stackoverflow.com/questions/9033#9038
[31]: http://www.stackoverflow.com/questions/9033#9067
[32]: http://www.stackoverflow.com/questions/9033#9099
[33]: http://www.stackoverflow.com/questions/9033#9099
[34]: http://www.stackoverflow.com/questions/9033#9099
[35]: http://www.stackoverflow.com/questions/9033#9099
[36]: http://www.stackoverflow.com/questions/9033#9114
[37]: http://www.stackoverflow.com/questions/9033#11738
[38]: http://www.stackoverflow.com/questions/9033#14088
[39]: http://www.stackoverflow.com/questions/9033#14277
[40]: http://www.stackoverflow.com/questions/9033#15321
[41]: http://www.stackoverflow.com/questions/9033#15715
[42]: http://www.stackoverflow.com/questions/9033#16450
[43]: http://www.stackoverflow.com/questions/9033#9055
[44]: http://www.stackoverflow.com/questions/9033#9066
[45]: http://www.stackoverflow.com/questions/9033#9099
[46]: http://www.stackoverflow.com/questions/9033#9125
[47]: http://www.stackoverflow.com/questions/9033#9547
[48]: http://www.stackoverflow.com/questions/9033#10207
[49]: http://www.stackoverflow.com/questions/9033#13932
[50]: http://www.stackoverflow.com/questions/9033#16395
[51]: http://www.stackoverflow.com/questions/9033#16482
[52]: http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081
[53]: http://www.stackoverflow.com/questions/9033#24914
[54]: http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811
[55]: http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm
[56]: http://www.stackoverflow.com/questions/9033#32148
[57]: http://www.stackoverflow.com/questions/9033?sort=newest#9037
[58]: http://www.stackoverflow.com/questions/9033?#9042
[59]: http://www.stackoverflow.com/questions/9033?#9042
[60]: http://www.stackoverflow.com/questions/9033?#9118
[61]: http://www.stackoverflow.com/questions/9033?#9181
[62]: http://www.stackoverflow.com/questions/9033?#9401
[63]: http://www.stackoverflow.com/questions/9033?#14723
[64]: http://www.stackoverflow.com/questions/9033#9042
[65]: http://www.stackoverflow.com/questions/9033#9042
[66]: http://www.stackoverflow.com/questions/9033#9581
[67]: http://www.stackoverflow.com/questions/9033#15393
[68]: http://www.stackoverflow.com/questions/9033#18158
[69]: http://www.stackoverflow.com/questions/9033#9282
[70]: http://www.stackoverflow.com/questions/9033#12137
[71]: http://www.stackoverflow.com/questions/9033#13441
[72]: http://stackoverflow.com/questions/9033/hidden-features-of-c#58945
[73]: http://www.stackoverflow.com/questions/9033?#9036
[74]: http://www.albahari.com/nutshell/linqbridge.html
[75]: http://www.stackoverflow.com/questions/9033?#10886
[76]: http://msdn.microsoft.com/en-us/concurrency/default.aspx
[77]: http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293
[78]: http://stackoverflow.com/questions/9033/hidden-features-of-c/365801#355991