為了簡化程式碼,開發人員在使用條件運算子為可空型別的屬性賦值時常遇到挑戰。以下程式碼片段示範了這個問題:
EmployeeNumber = string.IsNullOrEmpty(employeeNumberTextBox.Text) ? null : Convert.ToInt32(employeeNumberTextBox.Text),
在這種情況下,EmployeeNumber 是Nullable
'null 之間沒有隱式轉換' 和'int'
儘管null 和int都是可空整數的有效值,但編譯器無法確定表達式的類型僅基於真/假值。
要解決此問題,必須將其中一個值明確轉換為所需的可為空類型,從而允許編譯器確定表達式的類型:
EmployeeNumber = string.IsNullOrEmpty(employeeNumberTextBox.Text) ? (int?)null : Convert.ToInt32(employeeNumberTextBox.Text),
或
EmployeeNumber = string.IsNullOrEmpty(employeeNumberTextBox.Text) ? null : (int?)Convert.ToInt32(employeeNumberTextBox.Text),
這些修改確保正確推斷表達式的類型,允許條件運算子用作有意為之。
以上是如何在 C# 中處理可空型別的條件運算子賦值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!