我目前有以下带有 getter 和 setter 的类
public class CustAccount
{
public string Account { get; set; } private string account;
public string AccountType { get; set; } private string accountType;
public CustSTIOrder(Account ord)
{
account = ord.Account;
accountType = ord.AccountType;
}
}
现在我意识到public string Account { get; set; }
我不需要声明private string account
。无论如何,现在我的私有变量account
包含该值,但是当我Account
用来获取该值时,我得到一个空值。关于为什么我得到 null 的任何建议?