Category Archives: CodeProject

any blogs related to codeproject.com

Visual Studio 2017 – Exception Helper

Exceptions is an ancient programming concept that every developer has to deal with in the programs they write during development, testing and production scenarios. Visual Studio has long provided facilities to inspect the exceptions but with Visual Studio 2017, its Exception … Continue reading

Posted in CodeProject, Visual Studio 2017 | Leave a comment

Visual Studio 2017 – Run To Click

Visual Studio 2017 has provided several key improvements in Debugging experience. One of them is called “Run To Click”. “Run to cursor” has been a familiar experience for all developers for many years. This provided a convenient way of running … Continue reading

Posted in CodeProject, Visual Studio 2017 | Leave a comment

C# 7.0 – Tuples Re-Engineered

Tuples have been around for quite sometime as a convenient way of returning more than one value from a method. Even though Tuples were quite easy to use but from code-readability perspective, there were certainly room for improvement. In C# 7.0, team … Continue reading

Posted in .NET, CodeProject, Visual Studio 2017 | Leave a comment

Debugging Multi-threaded applications – Tip 6 of n

I published one more tip on codeproject. This tip is about figuring out what threads are waiting for a particular lock to be release in windbg. You can find it here. Until next, happy debugging.

Posted in .NET, CodeProject, Debugging | Leave a comment

Debugging Tip – Instantiate objects without stopping Debugging Session

My tip regarding instantiating objects without stopping debugging session has been published at codeproject. You can find it here. Until next, happy debugging.

Posted in .NET, CodeProject, Debugging | Leave a comment

Debugging Tip – Modify Variable values without leaving Debugging Session

My debugging tip related to modifying variable values without leaving your debugging session publised at codeproject. You can find it here. Until next, happy debugging.

Posted in .NET, CodeProject, Debugging | Leave a comment

Debugging Multi-threaded applications – Tip 5 of n

Fifth part of this tip published on codeproject. You can find it here. This tip is about filtering threads from a particular assembly. Until next, happy debugging.

Posted in .NET, CodeProject, Debugging | Leave a comment

Debugging Multi-threaded applications – Tip 4 of n

Fourth part of multi-threaded debugging tips published on codeproject. This one is about effective way of switching between filtered threads. You can find this tip here. Until next, happy debugging.

Posted in .NET, CodeProject, Debugging | Leave a comment

Debugging Multi-threaded applications – Tip 3 of n

Third part of Debugging multithreaded applications series. This one is about showing threads in source to understand better what each thread is doing and how various threads may be related to each other. This tip is published on codeproject and … Continue reading

Posted in .NET, CodeProject, Debugging | Leave a comment

My article won “Best C# article of June 2012” competition at codeproject

My article “Why hackers love string data type” won “Best C# article of June 2012” competition at codeproject. Thanks all who voted. http://www.codeproject.com/Articles/401220/Why-hackers-love-String-data-type

Posted in CodeProject | 4 Comments