Blog

This is the blog home of dsrawool.com. Find your articles here.

  • Develop your first Web API in .NET 7 using VS 2022

    Microsoft released .NET 7, a new version of .NET, in November 2022. The features have been released in the newer version focusing on performance in mind. If you want to build your first API, this will be a good platform to get started on. In this article, I will be sharing you with the dependencies, … Read more

  • How do I retrieve secrets from AWS Secret Manager in .NET Core Console App?

    .NET Core/.NET console application contains a program.cs file, which has the Main method that runs when we execute the application. People normally use the console application executables for running smaller jobs or batch processing. In some scenarios, bigger applications might need configurations to be stored in a separate configuration file. Click here to locate the sample … Read more

  • .NET- Processes, Threads, Tasks, Async-Await analogy

    In my initial development days, I used to get confused when it came to threads, tasks, and asynchrony. Later on, I was able to understand it. In this blog, I want to give you an overview of how it works in .NET. When you run your application or program, it executes on your machine and … Read more