- Posted by Ian Suttle on July 23, 2007
- Filed under .NET 3.5
C# 3.0 introduces
implicitly typed local variables by way of the keyword “var”.
The use of var allows one to
assign a number of different types to a variable without explicitly stating
that variable’s type. Var is actually not a type at all, but
a keyword w...
[More]
- Posted by Ian Suttle on July 20, 2007
- Filed under .NET 3.5
Automatic properties, or more formally known as an auto-implemented property, saves time and effort thanks to .Net Framework 3.5.
[More]