We have a n number of task whic is running sequentially now. We want to convert this to a parallel concurrent task. There are multiple ways to acieve this. Lets see few of those here. Sequential task example To parallelize this, we could just turn every single download into a separate Task with Task.Run and wait for them all […]
Month: March 2023
VS Code Angular Debug Configuration
Angular is a great front-end framework for web apps. Visual Studio Code is a great source code editor. Their powers combined let you not only develop Angular app code but also debug it through the editor! VS Code debugging even works for TypeScript The Basic Guide Make sure to have Google Chrome installed in its default location Use NPM to install Angular CLI globallynpm […]