This wonderful talk with Erik Meijer and Brian Beckman about reactive programming was published recently on channel 9. It starts of with simple and familiar things, the IEnumerable-Interface (or Iterable…
Read more
Maybe you’ve already seen an exception like this: Castle.DynamicProxy.Generators.GeneratorException: Type is not public, so a proxy cannot be generated. Type: SpielWiese.IReportSender …stack-trace… at SpielWiese.TestSomething.ExpectReportsSend() in Program.cs: line 64 What I’ve…
Read more
A while ago I’ve found a nice way to implement argument validation on the Paint.Net-blog. Its a fluent-interface like this: public void CallMe(object sender,int size, string name) { Validate.Begin() .IsType<Guid>(sender,…
Read more
Just wrote again really ugly reflection based code. In such moments I really wish that the ‘dynamic’-type is already here. I wanted to make this statement, but replace the MyServiceResolvedAtRuntime…
Read more
I’ve looked for a small embedded, easy to use data store for implementing my small software-engineering course project. Of course I’ve looked at MS SQL Server, which works great together…
Read more
I’m a fan of static analysis because whem I’m writing code in a statically typed language I want to get the most of it. So I’m a huge fan of…
Read more