Getting Started With Glimpse In ASP.NET MVC
If you are using ASP.NET, especially if you are using ASP.NET MVC, you need to be using Glimpse.\n\nI’m currently working…
34 articles found
If you are using ASP.NET, especially if you are using ASP.NET MVC, you need to be using Glimpse.\n\nI’m currently working…
Been staying pretty busy lately, so I haven’t been reading all that much, but I did just finish reading C#…
One of the biggest reasons to refactor code is to eliminate duplication. It is pretty easy to introduce duplication in…
I’ve recently had the problem of trying to display a progress dialog when executing an asynchronous operation and to dismiss…
I’ve written before on the idea of refactoring a switch to a Map or Dictionary. There is one major problem…
Perhaps this is something everyone already knew about, but I recently came across this little C# combo that solves one…
This post is really a continuation from my last post on using a method that takes an Action to address…
Aspect Oriented Programming (AOP) is a pretty great concept. It is a little difficult to implement though. To be honest,…
In C#, Action and Func are extremely useful tools for reducing duplication in code and decreasing coupling. It is a…
In working with legacy code, I often come across the problem of having to refactor classes that contain static methods…