C# Class vs Struct vs Record
This article is a general comparison of C# Class vs Struct vs Record. Like many other object-oriented programming languages, C# offers different ways to define… Read More »C# Class vs Struct vs Record
This article is a general comparison of C# Class vs Struct vs Record. Like many other object-oriented programming languages, C# offers different ways to define… Read More »C# Class vs Struct vs Record
C# Pattern matching features allow developers to write more expressive and concise code when working with complex data structures. With the release of C# 11.0,… Read More »C# Pattern Matching
C# constructors are a fundamental part of object-oriented programming that play a critical role in object creation and initialization. In simple terms, a constructor is… Read More »C# Constructors
This article explores what Binary Trees are, some of it’s types and use-cases and implementation of Binary Trees in C# to improve your data structure… Read More »Binary Trees in C#
Visual Studio: Why this should be your IDE of choice
Hello World in C# .Net 7 in Windows, Mac, and Linux Welcome to the world of programming! If you’re just starting out or looking to… Read More »Hello World in C# .Net 7 in Windows, Mac, and Linux
ASP.NET Core JWT Tutorial Welcome to our detailed ASP.NET Core JWT Tutorial! We’ll be implementing a simple authentication system you can follow along and see… Read More »ASP.NET Core JWT Tutorial
Intro This post is an addition to one of the lectures from our C# Masterclass. It also contains the course code and extra code samples.… Read More »Console Class in C# and some of its Methods
In this article, we’ll be implementing-lazy loading with Entity Framework Core. Lazy loading is an Entity Framework’s feature that allows entities to be loaded on-demand… Read More »Implementing Lazy Loading with Entity Framework Core
This is an introduction to building a multi-language website in ASP.NET Core, including creating localized resources and language-switching functionality. Building a multi-language website can be… Read More »Building a Multi-language Site in ASP.NET Core