I am using MailChimp Library by brandonseydel, i am not able to create the 'MailChimpManager' object,getting the error a field initializer cannot reference non static field,method,property
public string MailChimpAPIKey {
get
{
using (BEntities entity=new BEntities())
{
var key = entity.tbl_Client_MailChimp_Settings.Where(p => p.CIN == CINNo).FirstOrDefault();
if (key != null)
return key.APIKey;
else
return "";
}
}
}
private static MailChimpManager Manager = new MailChimpManager(MailChimpAPIKey);