我有一个包含以下两个字段的viewmodel:
public bool IsMobile {get; set;}
public bool? AcceptSms {get; set;}
如果IsMobile设置为true,我需要一个AcceptSms值,而不是null。 我无法弄清楚使用get或set函数来获取值的结构。
以下是我认为我需要的......
public bool? AcceptSms
{ get
{ if(IsMobile == true)
{return ...}
}
}