User1166036563 posted
Hello,
You can use NuGet to obtain the Microsoft.WindowsAzure.Storage.dll
assembly. Right-click your project in
Solution Explorer and choose Manage NuGet Packages. Search online for "WindowsAzure.Storage" and click
Install to install the Azure Storage package and dependencies.
Microsoft.WindowsAzure.Storage.dll
is also included in the Azure SDK for .NET, which can be downloaded from the
.NET Developer Center. The assembly is installed to the
%Program Files%\Microsoft SDKs\Azure\.NET SDK\<sdk-version>\ref\
directory.
Namespace declarations
Add the following code namespace declarations to the top of any C# file in which you wish to programmatically access Azure Storage.
Copy to clipboardCopy
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Auth;
using Microsoft.WindowsAzure.Storage.Table;
Make sure you reference the Microsoft.WindowsAzure.Storage.dll
assembly.
You could find more about these info in
https://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-tables/
I hope it helps.