
David Kröll
A full-time .NET Developer with a willingness of sharing knowledge in both blogging and making things in the Open-Source world
Work
Software Engineer .NET
loading...
We're a place where coders share, stay up-to-date and grow their careers.
A full-time .NET Developer with a willingness of sharing knowledge in both blogging and making things in the Open-Source world
Work
Software Engineer .NET
Recent comments
Code Smell 135 - Interfaces With just One Realization
Can I use your code snippet in another smell ? Yes feel fr...
Why you shouldn’t use the Dynamic type in .NET
Two years into C# development now and never used it...
Why you shouldn't use the Repository pattern in .NET
Totally agree! You would probably end up writing an UnitOfWor...
Code Smell 135 - Interfaces With just One Realization
public class Car { private readonly IEngine _engine; ...
Switch is Faster than If (in C#)
Yeah, absolutely. The interesting part is of course the compi...
Code Smell 135 - Interfaces With just One Realization
Typically just a single "real" one, the other ones are create...
Code Smell 135 - Interfaces With just One Realization
I mostly agree with you opition, except a single thing: tests...
A Simple Trick to Boost Performance of Async Code in C#
Thank you for the addition. Will the Parallel class also limi...