// Retrieve reference to a previously created container
CloudBlobContainer container = blobClient.getContainerReference("mycontainer");
// Retrieve reference to a blob named "myimage.jpg"
CloudBlockBlob blob = container.getBlockBlobReference("myimage.jpg");
// Delete the blob
blob.delete();