<t><br/>
using Microsoft.WindowsAzure.Storage;<br/>
using Microsoft.WindowsAzure.Storage.Auth;<br/>
using Microsoft.WindowsAzure.Storage.Blob; <br/>
<br/>
// Retrieve storage account from connection string.<br/>
CloudStorageAccount storageAccount = CloudStorageAccount.Parse("StorageKey");<br/>
<br/>
// Create the blob client.<br/>
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();<br/>
<br/>
// Retrieve reference to a previously created container.<br/>
CloudBlobContainer container = blobClient.GetContainerReference("mycontainer");<br/>
<br/>
// Retrieve reference to a blob named "myblob".<br/>
CloudBlockBlob blockBlob = container.GetBlockBlobReference("myblob");<br/>
<br/>
// Create or overwrite the "myblob" blob with contents from a local file.<br/>
using (var fileStream = System.IO.File.OpenRead(@"path\myfile"))<br/>
{<br/>
blockBlob.UploadFromStream(fileStream);<br/>
}<br/>
<br/><br/><br/>
see here about needed SDK and references<br/>
<br/>
i think it's what you need</t>