如何添加if语句到记录

本文关键字:if 语句 记录 添加 何添加 | 更新日期: 2023-09-27 17:53:38

如何在此记录内添加if语句?

CorpData.Address viewAddress = new CorpData.Address
        {
            DocumentId = lblDocId.Text.ToUpper(),
            Address =  txtAddress.Text.ToUpper(),
            AddressCity = txtCity.Text.ToUpper(),
            AddressZip = txtZip.Text.ToUpper(),
            StateCode = statesDropdown.SelectedValue,
        };

我试图添加一个if语句来检查是否stateCode在美国

如何添加if语句到记录

首先对属性赋值使用三元操作符:

StateCode = IsInUs(statesDropdown.SelectedValue)? statesDropdown.SelectedValue : string.empty

然后创建一个新方法来执行测试。比如:

private static bool IsInUs(string testValue){
    If(ListOfStateCodes.Contains(testValue))
        return True;
    return False;
}