Exception handling is a crucial aspect of writing robust and fault-tolerant applications in C#. It ensures that your application can gracefully handle unexpected errors without crashing. In this blog, we'll explore the fundamentals of exception handling in C#, best practices, and advanced techniques. What is an Exception? An exception is an unexpected event that occurs... Continue Reading →
Top 20 C# Features Every .NET Developer Must Know!
C# is a powerful and versatile language that continues to evolve with new features and improvements. In this article, we'll explore the top 20 features that every .NET developer should know, complete with code examples to help you understand how to use them effectively. 1. Async-Await The async-await pattern simplifies the writing of asynchronous code,... Continue Reading →
What’s new in C# 12
C# 12 is the latest version of C# which is available in .NET 8. To try out C# 12 features you need visual studio IDE and dotnet 8 SDK. In this blog, we'll explore about the latest updates in C#. Primary constructors Collections Expressions Ref and readonly Default lambda parameters Alias any type Experimental attribute... Continue Reading →
Visual Studio Code Tips and Tricks
Visual Studio Code is an open-source, light-weight code editor developed by Microsoft and it was built upon Electron Framework. It supports all the platforms such as Windows, Linux and Mac. The performance and the usage of VS Code will be much better than Visual Studio. A tool should be very much user-friendly and also it... Continue Reading →
Visual Studio 2019 tips and tricks
Visual Studio is an Integrated Development Environment (IDE) developed by Microsoft which is used to code,debug and run the respective applications. According to Wikipedia, Visual Studio supports around 36 programming languages and the advantage of using Visual Studio is that the code editor and debugger will support all these programming languages and also it supports cross-platform. The latest version of Visual Studio is 2019(16.4.3). There are some major improvements done in Visual Studio 2019 when compared... Continue Reading →