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` operators by [Binoj Antony][43]
`implicit and explicit` operators by [Flory][44]
Language Features
-
Nullable types by [Brad Barker][45]
Currying by [Brian Leahy][46]
anonymous types by [Keith][47]
`__makeref __reftype __refvalue` by [Judah Himango][48]
object initializers by [lomaxx][49]
format strings by [David in Dakota][50]
Extension Methods by [marxidad][51]
`partial` methods by [Jon Erickson][52]
preprocessor directives by [John Asbeck][53]
`DEBUG` pre-processor directive by [Robert Durgin][54]
operator overloading by [SefBkn][55]
type inferrence by [chakrit][56]
boolean operators [taken to next level][57] by [Rob Gough][58]
Visual Studio Features
-
snippets by [DannySmurf][59]
Framework
-
`TransactionScope` by [KiwiBastard][60]
`DependantTransaction` by [KiwiBastard][61]
`Nullable<T>` by [IainMH][62]
`Mutex` by [Diago][63]
`System.IO.Path` by [ageektrapped][64]
`WeakReference` by [Juan Manuel][65]
Methods and Properties
-
`String.IsNullOrEmpty()` method by [KiwiBastard][66]
`List.ForEach()` method by [KiwiBastard][67]
`BeginInvoke()`, `EndInvoke()` methods by [Will Dean][68]
`Nullable<T>.HasValue` and `Nullable<T>.Value` properties by [Rismo][69]
`GetValueOrDefault` method by [John Sheehan][70]
Tips & Tricks
-
nice method for event handlers by [Andreas H.R. Nilsson][71]
uppercase comparisons by [John][72]
access anonymous types without reflection by [dp][73]
a quick way to lazily instantiate collection properties by [Will][74]
Other
-
netmodules by [kokos][75]
[LINQBridge][76] by [Duncan Smart][77]
[Parallel Extensions][78] by [Joel Coehoorn][79]
[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://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035
[8]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035
[9]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036
[10]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036
[11]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9041#9041
[12]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9070#9070
[13]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9092#9092
[14]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9639#9639
[15]: http://stackoverflow.com/questions/9033/hidden-features-of-c/12152#12152
[16]: http://stackoverflow.com/questions/9033/hidden-features-of-c/12316#12316
[17]: http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#59691
[18]: http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#37926
[19]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9035#9035
[20]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037
[21]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9048#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://stackoverflow.com/questions/9033/hidden-features-of-c/33474#33474
[25]: http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932
[26]: http://stackoverflow.com/questions/9033/hidden-features-of-c/21752#21752
[27]: http://msdn.microsoft.com/en-us/library/aa664622%28VS.71%29.aspx
[28]: http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342
[29]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036
[30]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038
[31]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067
[32]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099
[33]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099
[34]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099
[35]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099
[36]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114
[37]: http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738
[38]: http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088
[39]: http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277
[40]: http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321
[41]: http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715
[42]: http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450
[43]: http://stackoverflow.com/questions/9033/hidden-features-of-c/355991#355991
[44]: http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470
[45]: http://www.stackoverflow.com/questions/9033#9055
[46]: http://www.stackoverflow.com/questions/9033#9066
[47]: http://www.stackoverflow.com/questions/9033#9099
[48]: http://www.stackoverflow.com/questions/9033#9125
[49]: http://www.stackoverflow.com/questions/9033#9547
[50]: http://www.stackoverflow.com/questions/9033#10207
[51]: http://www.stackoverflow.com/questions/9033#13932
[52]: http://www.stackoverflow.com/questions/9033#16395
[53]: http://www.stackoverflow.com/questions/9033#16482
[54]: http://www.stackoverflow.com/questions/9033/hidden-features-of-c#29081
[55]: http://www.stackoverflow.com/questions/9033#24914
[56]: http://www.stackoverflow.com/questions/9033/hidden-features-of-c#28811
[57]: http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm
[58]: http://www.stackoverflow.com/questions/9033#32148
[59]: http://www.stackoverflow.com/questions/9033?sort=newest#9037
[60]: http://www.stackoverflow.com/questions/9033?#9042
[61]: http://www.stackoverflow.com/questions/9033?#9042
[62]: http://www.stackoverflow.com/questions/9033?#9118
[63]: http://www.stackoverflow.com/questions/9033?#9181
[64]: http://www.stackoverflow.com/questions/9033?#9401
[65]: http://www.stackoverflow.com/questions/9033?#14723
[66]: http://www.stackoverflow.com/questions/9033#9042
[67]: http://www.stackoverflow.com/questions/9033#9042
[68]: http://www.stackoverflow.com/questions/9033#9581
[69]: http://www.stackoverflow.com/questions/9033#15393
[70]: http://www.stackoverflow.com/questions/9033#18158
[71]: http://www.stackoverflow.com/questions/9033#9282
[72]: http://www.stackoverflow.com/questions/9033#12137
[73]: http://www.stackoverflow.com/questions/9033#13441
[74]: http://stackoverflow.com/questions/9033/hidden-features-of-c#58945
[75]: http://www.stackoverflow.com/questions/9033?#9036
[76]: http://www.albahari.com/nutshell/linqbridge.html
[77]: http://www.stackoverflow.com/questions/9033?#10886
[78]: http://msdn.microsoft.com/en-us/concurrency/default.aspx
[79]: http://www.stackoverflow.com/questions/9033/hidden-features-of-c#31293