C# Asyc await

C# Asynchronous Programming with async / await

Asynchronous Programming. One of the things that confuses most developers is asynchronous versus synchronous execution model. So, in this article, I’m going to explain the difference between synchronous and asynchronous execution model and then explain how we can do asynchronous programming with C#. Synchronous and Asynchronous execution model Synchronous program execution- In a synchronous program…Continue reading C# Asynchronous Programming with async / await

C# Dynamic

C# Dynamic

Dynamics is one of the features of C# that sometimes confuses some developers but it’s actually pretty easy.Let me give you some background information.Programming languages are divided into two types — Statically-typed languages Dynamically-typed languages. Or in short, we can say static languages or dynamic languages.Examples of static languages are C# and Java. Dynamic languages…Continue reading C# Dynamic