Skip to content

Commit e0f8d70

Browse files
authored
Merge pull request #16 from 3141592654/master
Changed ordering of numbers written to console from 1223467 to 1234567
2 parents 9483db2 + 0762e1b commit e0f8d70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

BlobStorage/GettingStarted.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ private static async Task BasicStoragePageBlobOperationsAsync()
258258
await pageBlob.CreateAsync(512 * 2 /*size*/); // size needs to be multiple of 512 bytes
259259

260260
// Write to a page blob
261-
Console.WriteLine("2. Write to a Page Blob");
261+
Console.WriteLine("3. Write to a Page Blob");
262262
byte[] samplePagedata = new byte[512];
263263
Random random = new Random();
264264
random.NextBytes(samplePagedata);
@@ -267,7 +267,7 @@ private static async Task BasicStoragePageBlobOperationsAsync()
267267
// List all blobs in this container. Because a container can contain a large number of blobs the results
268268
// are returned in segments with a maximum of 5000 blobs per segment. You can define a smaller maximum segment size
269269
// using the maxResults parameter on ListBlobsSegmentedAsync.
270-
Console.WriteLine("3. List Blobs in Container");
270+
Console.WriteLine("4. List Blobs in Container");
271271
BlobContinuationToken token = null;
272272
do
273273
{
@@ -282,7 +282,7 @@ private static async Task BasicStoragePageBlobOperationsAsync()
282282
while (token != null);
283283

284284
// Read from a page blob
285-
Console.WriteLine("4. Read from a Page Blob");
285+
Console.WriteLine("5. Read from a Page Blob");
286286
int bytesRead = await pageBlob.DownloadRangeToByteArrayAsync(samplePagedata, 0, 0, samplePagedata.Count());
287287

288288
// Clean up after the demo

0 commit comments

Comments
 (0)