我正在使用开源项目。在这个项目中有功能。
public virtual ICollection<Customer> AffiliatedCustomers
{
get
{
return _affiliatedCustomers ?? (_affiliatedCustomers = new List<Customer>());
}
protected set { _affiliatedCustomers = value; }
}
我不明白“得到”是什么意思。你能解释一下这个功能吗?