private static async Task CreateCheckpointBlobForTests()

in Sample-Code-Snippets/dotnet/EventHubs-Emulator-Demo/EventHubs-Emulator-Demo/Program.cs [133:144]


    private static async Task CreateCheckpointBlobForTests(string blobContainerName)
    {
        BlobServiceClient client = new BlobServiceClient("UseDevelopmentStorage=true");
        try
        {
            await client.CreateBlobContainerAsync(blobContainerName);
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.ToString());
        }
    }