These instructions assume the following:
- You have your MongoDB database up and running
- You are going to configure Azure via the Azure Portal
- Create a new App Service Plan resource
These instructions assume the following:
| using System; | |
| using System.Threading; | |
| static class Program { | |
| static void Main() { | |
| Console.Write("Performing some task... "); | |
| using (var progress = new ProgressBar()) { | |
| for (int i = 0; i <= 100; i++) { | |
| progress.Report((double) i / 100); |