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:
=
<br />
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
-
[`??`][29] operator by [kokos][30]
number flaggings by [Nick Berardi][31]
`where T:new` by [Lars Mæhlum][32]
implicit generics by [Keith][33]
one-parameter lambdas by [Keith][34]
auto properties by [Keith][35]
namespace aliases by [Keith][36]
verbatim string literals with @ by [Patrick][37]
`enum` values by [lfoust][38]
@variablenames by [marxidad][39]
`event` operators by [marxidad][40]
format string brackets by [Portman][41]
property accessor accessibility modifiers by [xanadont][42]
ternary operator (`?:`) by [JasonS][43]
`checked` and `unchecked` operators by [Binoj Antony][44]
`implicit and explicit` operators by [Flory][45]
Language Features
-
Nullable types by [Brad Barker][46]
Currying by [Brian Leahy][47]
anonymous types by [Keith][48]
`__makeref __reftype __refvalue` by [Judah Himango][49]
object initializers by [lomaxx][50]
format strings by [David in Dakota][51]
Extension Methods by [marxidad][52]
`partial` methods by [Jon Erickson][53]
preprocessor directives by [John Asbeck][54]
`DEBUG` pre-processor directive by [Robert Durgin][55]
operator overloading by [SefBkn][56]
type inferrence by [chakrit][57]
boolean operators [taken to next level][58] by [Rob Gough][59]
Visual Studio Features
-
snippets by [DannySmurf][60]
Framework
-
`TransactionScope` by [KiwiBastard][61]
`DependantTransaction` by [KiwiBastard][62]
`Nullable<T>` by [IainMH][63]
`Mutex` by [Diago][64]
`System.IO.Path` by [ageektrapped][65]
`WeakReference` by [Juan Manuel][66]
Methods and Properties
-
`String.IsNullOrEmpty()` method by [KiwiBastard][67]
`List.ForEach()` method by [KiwiBastard][68]
`BeginInvoke()`, `EndInvoke()` methods by [Will Dean][69]
`Nullable<T>.HasValue` and `Nullable<T>.Value` properties by [Rismo][70]
`GetValueOrDefault` method by [John Sheehan][71]
Tips & Tricks
-
nice method for event handlers by [Andreas H.R. Nilsson][72]
uppercase comparisons by [John][73]
access anonymous types without reflection by [dp][74]
a quick way to lazily instantiate collection properties by [Will][75]
JavaScript-like anonymous inline-functions by [roosteronacid][81]
Shorter properties with private/public set/get by [roosteronacid][82]
Other
-
netmodules by [kokos][76]
[LINQBridge][77] by [Duncan Smart][78]
[Parallel Extensions][79] by [Joel Coehoorn][80]
[1]: http://www.stackoverflow.com/questions/8941/generic-type-checking
[2]: http://msdn.microsoft.com/en-us/library/512aeb7t.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.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/4xssyw96.aspx
[28]: http://stackoverflow.com/questions/9033/hidden-features-of-c/35342#35342
[29]: http://msdn.microsoft.com/en-us/library/ms173224.aspx
[30]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036
[31]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038
[32]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9067#9067
[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/9099#9099
[37]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9114#9114
[38]: http://stackoverflow.com/questions/9033/hidden-features-of-c/11738#11738
[39]: http://stackoverflow.com/questions/9033/hidden-features-of-c/14088#14088
[40]: http://stackoverflow.com/questions/9033/hidden-features-of-c/14277#14277
[41]: http://stackoverflow.com/questions/9033/hidden-features-of-c/15321#15321
[42]: http://stackoverflow.com/questions/9033/hidden-features-of-c/15715#15715
[43]: http://stackoverflow.com/questions/9033/hidden-features-of-c/16450#16450
[44]: http://stackoverflow.com/questions/9033/hidden-features-of-c/355991#355991
[45]: http://stackoverflow.com/questions/9033/hidden-features-of-c/121470#121470
[46]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9055#9055
[47]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9066#9066
[48]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9099#9099
[49]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9125#9125
[50]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9547#9547
[51]: http://stackoverflow.com/questions/9033/hidden-features-of-c/10207#10207
[52]: http://stackoverflow.com/questions/9033/hidden-features-of-c/13932#13932
[53]: http://stackoverflow.com/questions/9033/hidden-features-of-c/16395#16395
[54]: http://stackoverflow.com/questions/9033/hidden-features-of-c/16482#16482
[55]: http://stackoverflow.com/questions/9033/hidden-features-of-c/29081#29081
[56]: http://stackoverflow.com/questions/9033/hidden-features-of-c/24914#24914
[57]: http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811
[58]: http://www.java2s.com/Tutorial/CSharp/0160__Operator-Overload/truefalseoperatorforComplex.htm
[59]: http://stackoverflow.com/questions/9033/hidden-features-of-c/32148#32148
[60]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#9037
[61]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042
[62]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042
[63]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9118#9118
[64]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9181#9181
[65]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401
[66]: http://stackoverflow.com/questions/9033/hidden-features-of-c/14723#14723
[67]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042
[68]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9042#9042
[69]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581
[70]: http://stackoverflow.com/questions/9033/hidden-features-of-c/15393#15393
[71]: http://stackoverflow.com/questions/9033/hidden-features-of-c/18158#18158
[72]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9282#9282
[73]: http://stackoverflow.com/questions/9033/hidden-features-of-c/12137#12137
[74]: http://stackoverflow.com/questions/9033/hidden-features-of-c/13441#13441
[75]: http://stackoverflow.com/questions/9033/hidden-features-of-c/58945#58945
[76]: http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036
[77]: http://www.albahari.com/nutshell/linqbridge.html
[78]: http://stackoverflow.com/questions/9033/hidden-features-of-c/10886#10886
[79]: http://msdn.microsoft.com/en-us/concurrency/default.aspx
[80]: http://stackoverflow.com/questions/9033/hidden-features-of-c/31293#31293
[81]: http://stackoverflow.com/questions/9033/hidden-features-of-c/1399130#1399130
[82]: http://stackoverflow.com/questions/9033/hidden-features-of-c/1503789#1503789