PreviousNext

Debug & Catch Exceptions in Visual Studio: The Complete Guide

by bill-s, 2019-08-12T16:45:54.238Z

One of the most important concepts in modern programming is Exceptions. They were introduced in the 60’s with LISP and eventually made their way to practically all modern programming languages. The simple concept is this: When some kind of error occurs during runtime, the execution will terminate and an Exception will be thrown. This will cause the stack to unwind until an appropriate Exception Handler is found. It’s a brilliant concept really.

Read More