我想根据情况为 x (可以为空的整数)分配一个值或空值(您可以在下面看到)
int? x;
x = stackoverflow.ToString() != "" ? int.Parse(stackoverflow.ToString()) : null;
但它给出了以下错误。
Type of conditional expression cannot be determined because there is no implicit conversion between 'int' and '<null>'
为什么?