Hi, I'm Ivan

.NET Core deployment types

In this article, I will discuss the different deployment types available in .NET Core...

Demystifying ASP.NET Core

ASP.NET Core is becoming increasingly indispensable in the web development landscape. This article aims to simplify the concepts behind ASP.NET Core and how it works...

Partial classes and methods

In this article, I’m going to explain what partial classes and partial methods are, and how to implement them in C#.

What is GAC?

The Global Assembly Cache (GAC) is a local cache maintained by the .NET Framework where strong-named assemblies (their name is composed by: name of assembly, version number, culture and public key token) that are designated to be shared by all the applications executed on a system will be stored...

What is the difference between String and StringBuilder?

Difference between the String and StringBuilder is an important concept that makes the difference when an application has to deal with the editing of a high number of Strings...