Tags
.NET ADO.NET AggregateException Anti-pattern asp.net ASP.NET MVC C# C# 3 Code Quality ConcurrentDictionary Conference CTP/Beta Database data design DDD DDD Scotland Debugging design patterns error handling fun Google Analytics hiring IIS Installation javascript learning LINQ object oriented design parallelisation parallelization PHP refactoring security software development practices Spatial SQL SQL Injection Attack SQL Server SQL Server 2008 unit testing virtual earth visual studio Visual Studio 2008 Windows 7 Windows VistaArchives
- April 2012
- March 2012
- February 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- March 2007
- February 2007
- December 2006
- July 2006
- April 2005
Daily Archives: Monday, 18 June, 2007
Object Initialisers III
It seems that now I’ve got Lutz Roeder’s Reflector on the case with Orcas the way object initialisers work slightly different to how I expected. As it was described to me as instantiating the object followed by the property calls. However, the … Continue reading
Object Initialisers II
Following on from Gary Short‘s message from my previous post on Object Initialisers, I decided to take a screenshot of Orcas displaying the tooltips. I really have to compliment those that designed and wrote intellisense. Not only does it work … Continue reading
Object Initialisers I
Continuing with the language enhancements in C#3.0. This post presents the concept of object initailisation. Say you have a class with a default constructor and lots of properties and you want to be able in initialise the object in one … Continue reading
A start on LINQ
I was at the Microsoft MSDN Roadshow today and I got to see some of the latest technologies being demonstrated for the first time and I’m impressed. Daniel Moth’s presentation on the Language Enhancements and LINQ was exceptional – It … Continue reading
Automatic Properties
Continuing my look at the new features found in the C# 3.0 compiler I will look at Automatic Properties. public class Employee{ public string FirstName { get; set; } public string Surname { get; set; } public DateTime DateOfBirth { … Continue reading
Extensions Methods
I’ve been looking at more of the language enhancements in C# 3.0. In this post I’m going to look at Extensions. There have been many times went a class has needed to be extended, but the additional code just doesn’t … Continue reading
Anonymous Types
Anonymous Types are another new feature to the C# 3.0 compiler. To create one, just supply the new keyword without a class name, followed by the, also new, object initialiser notation. As the type name is not known it needs … Continue reading
