Tag: Debugging
Debugging a process that cannot be invoked through Visual Studio.
Sometimes it is rather difficult to debug through Visual Studio directly even although the project is right there in front of you. In my case I have an...
Changing the default Assembly/Namespace on an MVC appliction
TL;DR When getting an error message like this: Compiler Error Message: CS0246: The type or namespace name 'UI' could not be found (are you missing a using...
A better tracing routine
In .NET 4.5 three new attributes were introduced. They can be used to pass into a method the details of the caller and this can be used to create better trace...
Tip of the Day: Duplicate input fields
Don't allow duplicate input fields into your form. The other day I was trying to debug a bug in an application that I maintain. The code created a set of...
The Conditional attribute in .NET
One of the odd thoughts that shoot across my brain today was how does Debug.Assert() work? I mean there are not separate debug and release builds of the .NET...
