The new c# compiler allow us to write very clean and simplified property declaration, that avoid us to declare the private member and the get/ set accessors. here is the snippet (just do "prop TAB TAB" in visual studio 2008)
public string Name { get; set; }
Here is what to do when you need a default value for your property : Just use our good old attributes:
[System.ComponentModel.DefaultValue("John doe")]
public string Name { get; set; }
Thursday 27 November 2008 | Predicate<T>
Cher Entreprenaute, vous pouvez trouver ici votre passeport pour l'économie numérique
