How to parse content get from Azure Blob into Dictionary<string, dynamic> using C#?
I am trying to get contents from blob in Azure which is key-value pairs and transfer them into Dictionary<String, dynamic>. But it falled. My code is as follows: static async Task Main() { BlobServiceClient blobServiceClient = new BlobServiceClient("#"); BlobContainerClient containerClient…