Category: OOPS
-
I didn’t know it was this easy to handle Exceptions in .Net Core Web API. EasyException !!
An exception is a problem that arises during the execution of a program. A C# exception is a response to an exceptional circumstance that arises while a program is running, such as an attempt to divide by zero. Exceptions provide a way to transfer control from one part of a program to another. C# exception […]
-
Execute a piece of C# code anytime in VS Code using .NET Interactive Notebooks
.Net Interactive Notebooks is an extension being developed by Microsoft, and this extension adds support for using .NET Interactive in a Visual Studio Code notebook. The source code to this extension is available on https://github.com/dotnet/interactive and licensed under the MIT license. Getting Started Install the latest Visual Studio Code. Install the latest .NET 5 SDK Install the .NET Interactive Notebooks […]
-
Introduction To SOLID Principles
SOLID is an acronym for 5 important design principles when doing OOP (Object Oriented Programming). These 5 principles were introduced by Robert C. Martin (Uncle Bob), in his 2000 paper Design Principles and Design Patterns. The actual SOLID acronym was, however, identified later by Michael Feathers. The intention of these principles is to make software designs more […]