BlobSharp is a simple managed interface to communicate with Azure Blob Storage accounts. You can download, upload, delete, etc files on your blob storage account with this package.
As an example, one can do the following to download a file from your blob storage:
var client = new BlobStorageClient("<--Connection String Here-->");
using (var stream = await client.DownloadAsStreamAsync("somedir", "file"))
{
// Do something with the file.
}The package is available on the NuGet Package Manager.
