.Net and C# Versioning Clarifications

.net versioning with .net framework 3.5 and C# 3.0. there isn't a C# 3.5 just yet.. [More]
Bookmark and Share

JsonQueryStringConverter Class

The JsonQueryStringConverter class comes equipped with the .Net Framework 3.5.  The basic premise here is you can serialize an object into a JSON-like string which can be passed via query string.  Typically this class is to interact via Windows Communication Foundation although it&rs... [More]
Bookmark and Share

Implicitly Typed Local Variables

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]
Bookmark and Share

Auto-Implemented Properties

Automatic properties, or more formally known as an auto-implemented property, saves time and effort thanks to .Net Framework 3.5. [More]
Bookmark and Share