Recent posts

Adding Swagger to ASP.NET Core Web API Project

2 minute read

1. What is swagger? Swagger is an open-source set of rules and specifications. It is used for API documentation and testing the API endpoints. Swagger UI gen...

Using static files in ASP.NET Core

2 minute read

INDEX Context Static files WWWroot folder Enable the static files in the ASP.NET Core project Reading static files

Recursion in C#

3 minute read

INDEX What is a recursion? Simple recursion Example: Power Example: Factorial Download samples

What is Promise.all() in Typescript?

2 minute read

The Promise.all() function accepts a collection of promises as input and returns an array of results when all of the provided Promises resolve, or rejected w...