// Rodolfo Fadino

/* LIFE RUNS ON CODE */

Série de artigos muito legais de James Michael Hare, com muitas dicas e técnicas que melhoram consideravelmente a maneira que programamos.

C#/.NET Five Little Wonders That Make Code Better (1 of 3)

1.  The Null Coalescing Operator (??)
2.  The As Cast
3.  Auto-Properties
4.  The Stopwatch Class
5.  TimeSpan factory methods

Link: http://geekswithblogs.net/BlackRabbitCoder/archive/2010/08/26/c.net-five-little-wonders-that-make-code-better-1-of.aspx

C#/.NET Five More Little Wonders That Make Code Better (2 of 3)

1. string.IsNullOrEmpty() and string.IsNullOrWhiteSpace()
2. string.Equals()
3. using Statements
4. static Class Modifier
5. Object and Collection Initializers

Link: http://geekswithblogs.net/BlackRabbitCoder/archive/2010/09/02/c.net-five-more-little-wonders-that-make-code-better-2.aspx

C#/.NET Five More Little Wonders That Make Code Better (3 of 3)

1. Implicit Typing
2. LINQ Extension Methods
3. Extension Methods
4. System.IO.Path
5. Generic Delegates

Link: http://geekswithblogs.net/BlackRabbitCoder/archive/2010/09/09/c.net-five-final-little-wonders-that-make-code-better-3.aspx

Vale o estudo.

Rodolfo

C#