Skip to content

Instantly share code, notes, and snippets.

@wboevink
wboevink / UploadMultipleBlobs.cs
Created March 29, 2017 12:49 — forked from tuan/UploadMultipleBlobs.cs
A test console app to upload multiple blobs to Azure Blob Storage in parallel
class Program
{
static void Main(string[] args)
{
var stopwatch = new Stopwatch();
stopwatch.Start();
UploadToBlobAsync().Wait();
stopwatch.Stop();
Debug.WriteLine("Elapsed time in seconds: " + stopwatch.ElapsedMilliseconds / 1000);
}