Posts Tagged‘programming’

​How to: C# Exception Handling – Best Practices

There it is, a pesky exception! Many new to the industry find C# exception handling a daunting task, but only a few know it doesn’t have to be a challenging endeavor. Follow this guide and you’ll be a pro at it in no time. What Are Exceptions? Before getting started, it’s important to know what are exceptions. They are defined as a type of error that occurs during the execution of an application, and are often unexpected. These exceptions happen for a wide variety of reasons, and applications use handling logic to take care of them as they happen. They…