Hi, I'm Ivan

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...

What is DevOps and how to implement it in your organization using Microsoft

DevOps is a hot topic today, but ask someone what it actually is and you’ll hear crickets. According to research conducted by Gartner, a global research and advisory firm in the United States, 90% of interviewed organizations describe themselves as DevOps...

Continuous testing and integration with GitHub repo and CircleCI

In this article, I’ll show you how to use two patterns that have penetrated all aspects of software development: continuous testing and integration.