isuttle

Stories submitted by isuttle

Extension Methods in C# 3.0(iansuttle.com)

submitted by isuttleisuttle(1140) 4 years, 9 months ago

.Net Framework 3.5 Extension Methods allow you to add new functionality to an existing type, even if you don't have the source code of the type. This article explains how it works and provides some good examples. read more...

add a comment |category: |Views: 0

tags: another

JsonQueryStringConverter Class(iansuttle.com)

submitted by isuttleisuttle(1140) 4 years, 9 months ago

.Net 3.5 includes the JsonQueryStringConverter which can be used to serialize an object into a JSON string. Handy for asynchronous requests or transporting objects without implementing web services. read more...

add a comment |category: |Views: 58

tags: another

VS 2008 Orcas and .Net 3.5 Beta 2 Released(iansuttle.com)

submitted by isuttleisuttle(1140) 4 years, 10 months ago

Visual Studio 2008 and .Net 3.5 have been released. Get the links to the downloads and start enjoying the improvements offered in this release! read more...

add a comment |category: |Views: 0

tags: another

Implicitly Typed Local Variables(iansuttle.com)

submitted by isuttleisuttle(1140) 4 years, 10 months ago

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 which instructs the compiler to infer the most appropriate type based on the value or expression to the right of the equals sign. read more...

2 comments |category: |Views: 6

tags: another

Auto-Implemented Properties(iansuttle.com)

submitted by isuttleisuttle(1140) 4 years, 10 months ago

C# 3.0 introduces a short-hand way of creating simple properties referred to as auto-implemented properties. This post gives a quick example of how property definitions have changed since C# 2.0. read more...

add a comment |category: |Views: 25

tags: another