NDepend – Part 1
I’m currently test-driving NDepend, a code analysis tool, and spoiler alert, I am very pleased with what I see!
I’m currently test-driving NDepend, a code analysis tool, and spoiler alert, I am very pleased with what I see!
Here I go, again…
Ever since I learned about extension methods I have never stopped using them. Extension methods allow you to “extend” existing types, creating enhanced functionality in your code. For example, I can create an extension method for the string base type, and all strings in my class will implement that new method. Before we create our own let’s take a look at some existing extensions…
When first learning C# I had a hard time understanding how to properly implement delegates. In this tutorial you’ll learn the basics behind properly implementing delegates.