From 0762e1b9b1871131bcaa2f385bd4a5d5fe2bf772 Mon Sep 17 00:00:00 2001 From: 3141592654 <12554811+3141592654@users.noreply.github.com> Date: Sun, 14 Jun 2020 09:08:55 -0700 Subject: [PATCH] Changed ordering of numbers written to console from 1223467 to 1234567 --- BlobStorage/GettingStarted.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BlobStorage/GettingStarted.cs b/BlobStorage/GettingStarted.cs index 53093dc..717b4f7 100644 --- a/BlobStorage/GettingStarted.cs +++ b/BlobStorage/GettingStarted.cs @@ -258,7 +258,7 @@ private static async Task BasicStoragePageBlobOperationsAsync() await pageBlob.CreateAsync(512 * 2 /*size*/); // size needs to be multiple of 512 bytes // Write to a page blob - Console.WriteLine("2. Write to a Page Blob"); + Console.WriteLine("3. Write to a Page Blob"); byte[] samplePagedata = new byte[512]; Random random = new Random(); random.NextBytes(samplePagedata); @@ -267,7 +267,7 @@ private static async Task BasicStoragePageBlobOperationsAsync() // List all blobs in this container. Because a container can contain a large number of blobs the results // are returned in segments with a maximum of 5000 blobs per segment. You can define a smaller maximum segment size // using the maxResults parameter on ListBlobsSegmentedAsync. - Console.WriteLine("3. List Blobs in Container"); + Console.WriteLine("4. List Blobs in Container"); BlobContinuationToken token = null; do { @@ -282,7 +282,7 @@ private static async Task BasicStoragePageBlobOperationsAsync() while (token != null); // Read from a page blob - Console.WriteLine("4. Read from a Page Blob"); + Console.WriteLine("5. Read from a Page Blob"); int bytesRead = await pageBlob.DownloadRangeToByteArrayAsync(samplePagedata, 0, 0, samplePagedata.Count()); // Clean up after the demo