Я пытаюсь работать с .Net C # и хранилищем BLOB-объектов Azure
Я следую документации Microsoft для доступа к таблице BLOB-объектов.
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Table;
using System.Threading.Tasks;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebApplication1.Controllers
{
public class EmailAdress
{
CloudStorageAccount storageAccount = new CloudStorageAccount(
new Microsoft.WindowsAzure.Storage.Auth.StorageCredentials(
"experimentstables", "token"), true);
// Create the table client.
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
// Get a reference to a table named "peopleTable"
CloudTable pexperimentsEmailAddresses = tableClient.GetTableReference("experimentsEmailAddresses");
}
}
в этой строке
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
storageAccount помечен красным со следующей ошибкой:
инициализатор поля не может ссылаться на метод или свойство нестатического поля
Как мне это исправить?