Nach Ordnungsbegriffen durchsuchen

Rf.Sites source code available
It is my aim to have this site running on .NET code by the time I can leave my current hosting contract (end of February 2010). After some time I decided to have my own small platform to support just the features I need on my site for mainly two reasons...
ASP.NET MVC: class / action, not method / action
While pushing along my little home-brew CMS, Rf.Sites, which uses ASP.NET MVC for the HTTP Cruft that comes with Web development, there was something that was disturbing me. The train of thought was roughly as follows: read more
How can I get rid of this goto?
Help! It's late and I don't see a good way to get rid of this goto construct: private void advanceTheTimeCursor( Func<DateTime> nextTime, Action uponSuccessfulAdvancement) { loop: var t = nextTime(); if (t > reference) return; uponSuccessfulAdvancement...
Repository or DAO?: Repository
Fine, fine, the title is a blatant copy from Fabio Maulo 's equally titled blog post . Then again, this was the direct inspiration for understanding how the data access should look like in the mini-Blog engine I am cooking up. I decided to implement...
Intermezzo: XSL 2.0 on .NET
I was up to updating some old stuff that I had previously written in JAVA to the .NET world. It has been a while since I worked with JAVA - I had forgotten that the XSL I once built used version 2.0 features. To my dismay .NET 3.5 allows you to control...
Fashion of the week - Building with Rake
Here & There I have been seeing people using Ruby's build system rake in their .NET open source projects instead of NAnt or MSBuild. I don't really feel like commenting this fact here, but it is slightly annoying that people expect us to know...
Comfortable command line argument parsing
Once in a while you may want to write a command line tool which may have to accept commad line arguments. In comes a nice little bit of source code that is part of the great output of the Mono project. Documentation is available here and the source code...
cycling through a number range
What I really wanted to do was to play a round of quakelive. But right now, quakelive is down (well, it's Beta, isn't it?). Quakelive pointed me to their twitter feed . read more
Another beacon in a sea of expressions
A prosaic introduction to the subject of .NET expressions. These were introduced with .NET 3.5 and are featured most prominently in LINQ. Over here I implemented a use case with the aid of expressions. In my current project I am using expressions to be...
Iterators do [1..]
The following picture probably doesn't surprise you But as you can see in what is commented out, you can indeed e.g. do DataSource. Take ( 10 ) . ToList Such an iterator then has quite a similarity to Haskell's [1..], the infinite list...
Haven't digested C#3? Brace yourself for V4!
After Microsoft's PDC, a whole host of C# 4.0 infos are coming up. Many months ago we were already allowed to peek at Hejlsberg & Team sitting in an old meeting room, talking about what C# 4.0 would be all about (I have lost the link but you here's...
Don't be afraid of your csproj-Files (I): Embracing the idea
Intro Blimey, what a shock when MSBuild became available. NAnt was alive & kicking, hence the question emerged...WHY? read more
So, how expensive is it to let NInject make my object?
Back here I made a quick and dirty performance comparison. In the comments I actually got some "flak" scrutinizing some of the "design decisions" behind the example shown. I would like to reinstate that the example was made purely...
Some more on the implicit operator
Elaborating on my past post on the implicit operator in C#, here some additional information to round this thing up. Can you inherit the implicit operator(s)? No, you cannot. Within a type you could write as many implicit operator implementations as you...
A simple way to start your code in a different AppDomain
You may know that AppDomains in the .Net Framework are comparable to processes in that they provide an isolated execution context for the instructions executed by the CLR. However, they are also quite lightweight and what is more, you can have more than...
Mehr Beiträge Nächste Seite »