Categories: .NET, .NET 2.0
Live from TechDays 2005
Avril 14th, 2005For those readers who were at the TechDays in Geneva today and followed my presentation on SQL2K5 ("SQL Server 2005 - The Quantum Leap"), there may be two points worth highlighting :
- when consuming a SQL2K5-hosted web services from Excel (with the Off… suite »
Filtered enumerations
Octobre 17th, 2004In Yield and generics rock !, Bertrand Leroy exposed a very elegant way to filter an generic enumeration using the yield keyword.
He also suggested that "Of course, you can do that with .NET 1.1, but if you try it, you'll see that the code will be consi… suite »
Dynamic proxies over delegate types
October 9th, 2004One of the few users of the DynaProx.NET framework I posted on GotDotNet recently asked me if it was possible to create dynamic proxies overs delegates.
Short answer : "not in this release".
Long anser : "Well, it never occured to me that one would act… more »
Generics in .NET 2.0 make "polymorphic" delegates real !
September 11th, 2004After so many hours spent developing codebehinds and windows forms, I'm now convinced that there is space for improvement in the delegate/event model supported by the .NET Framework.
To be more specific, one aspect that I find extremely painful is the f… more »
DbException is your new best friend
Juillet 22nd, 2004Determine what's wrong with the .NET 1.x code snippet below :
public void Foo(){
try{
IDbConnection conn = ConnectionFactory.CreateConnection();
IDbCommand cmd = conn.CreateCommand();
...
}
catch(System.Data.DbException ex)… suite »
One more blog
July 22nd, 2004So I have a blog.
Frightening : am I doomed to spend every single night thinking about something intelligent to say, to finally realize the vacuum in my head ?
That's exactly what happened while starting this weblog :
1) choosing a language. Well, e… more »