Concurrent client connections in C#

Lately, I´ve been working some with performance testing and opposite to what I think most performance-gurus would like I´ve ended up writing my own tools for this. Yes I know I´m reinventing the wheel but the way our services are build I think this is easier. Anyway,...

ConfigurationSections, validators and default values

I just got a completely irrational error when testing my custom validator: The value for the property ‘Environment’ is not valid. Pose that I got the enum: public enum Environment { None, Test, Production } I have a validator attribute on my configuration...