Silverlight navigation: get rid of the view-model-locator

PostSharp is a must have (period). Let’s start from the beginning I’m building a sample application for a friend in order to see if it is possible to have a completely OOB and offline Silverlight application run on a Mac using a document database (


A C# TypeLoaderInterceptor

Adam Cogan has convinced me, that I will get a larger audience if I move my blog to English. So here is my first English post. What are your thoughts on this? Java has the concept of class loader. I cannot define myself as a java expert, I can s


Async CTP: welcome new keywords ;-)

fino a ieri non se ne poteva parlare, figo: class Worker{ public async Task<T> ExecuteAsyn<T>( T value ) { var task = await TaskEx.Run( () => { Thread.Sleep( 1000 ); return value; } ); return task; }}