12 Shorthand Operators in C# Every Developer Should Know About
In this article we will get introduced to 12 Shorthand Operators in C# Every Developer Should Know About, these operators are widely used in all …
Learn. Code. Listen
In this article we will get introduced to 12 Shorthand Operators in C# Every Developer Should Know About, these operators are widely used in all …
Swagger can help you document your APIs by representing your API definition in a JSON format, which is called the OpenAPI Specification document, OpenAPI was …
In this tutorial we will learn how to build RESTful APIs using ASP.NET Core. The APIs will be connected to an SQL Server Express Database Instance using Entity Framework Core.
We will be building RESTful APIs for Movies Database; the APIs will be responsible to connect to the database and get/save/update/delete records to and from the database and return the results back to the client.
You can easily secure ASP.NET Core Web API using API Key Authentication, it is just a matter of doing few steps and you will be …
In this tutorial you will learn how to secure ASP.NET Core Web API using JWT Authentication in .NET 5, I will try to simplify this …
Explaining 3 ways to dump object in c# , including the Object Dumper, Json Serializer and Yaml Serializer
Exception handling is a very important topic that is sometimes not properly understood or less used. In this article, I will explain to you about …
You might have already heard about asynchronous programming or async / await, either in .Net or some other language. In this article I will try …
Generics is a great concept in programming languages that was added to .Net 2.0 , it introduces the parameter T to types and methods. Generics improve code reusability, enforces type safety and prevents performance overhead of boxing/unboxing.
In this article, I will be explaining the difference between using String and StringBuilder when dealing with your string values. and in which cases you should never use String. and other cases where StringBuilder is not the optimal solution.