C# Async Tips & Tricks
The following are few tips and tricks for working with async in C#. This is as much a reference for myself as anyone else, but I figured it would probably »
The following are few tips and tricks for working with async in C#. This is as much a reference for myself as anyone else, but I figured it would probably »
The version of C# that your solution or project employs is fairly abstracted. It's not very obvious what features are or are not supported unless you try something and see »
This incarnation of my blog began with my foray into the wonderful world of C# and ASP.NET MVC, but in a previous life, I was a Python developer. One »
The following extension method allows you to add, update, or remove parameters from a URL's query string. public static class UrlHelperExtensions { /// <summary> /// Add, update, or remove parameters from »
For some reason, this particular error seems to just confuse the stuffing out of ASP.NET MVC developers in particular. Granted, it's not one of the most obvious or informative »