.NET 8 updates

.NET 8 arrived in late 2023, and it's packed with exciting advancements across performance, developer productivity, web development, and various other areas. Let's dive deeper into some key updates: Performance Revolution: Dynamic Profile-Guided Optimization (PGO): This game-changer automatically optimizes code based on real-world usage patterns, potentially boosting performance by up to 20%. Imagine your applications running noticeably faster... Continue Reading →

Visual studio – Tips and tricks

Let's dive deeper into some of the tips and tricks for Visual Studio: General Tips: 1. Keyboard Shortcuts: Visual Studio provides a plethora of keyboard shortcuts for various tasks. For instance, Ctrl + K + C comments out the selected code, and Ctrl + K + U uncomment. Familiarize yourself with these shortcuts to boost... 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 →

Introduction to Dapper

One of the most important operation in your enterprise application would be reading/writing to database. Sometimes it's very much important when you have lot of customers, the reading/writing should happen faster. In our .NET Applications, we have a class called SqlCommand and you should be able to perform read/write operations but, Brace yourselves, Dapper is... Continue Reading →

Introduction to Dependency Injection

Dependency Injection(DI) is a software design pattern which decreases the tight-coupling between the software components. If you take any projects, couple or more classes combine together to make a business logic and this leads to dependency of each other. To solve this dependency in an efficient way we have DI. Most of the .NET applications... Continue Reading →

Blog at WordPress.com.

Up ↑