私のクラスには次のコードがあります。
public string StrLog {get; set;}
次に、同じクラス内に、次のコードがあります。
private string imgData = StrLog;
次のエラーメッセージが表示されます。
A field initializer cannot reference the non-static field, method or property
次の問題があります。
private string imgData = StrLog;
しかし、これを解決する方法がわかりません。