C# 代码无法编译。 null 和 int 之间没有隐式转换

发布于 2024-08-02 02:58:18 字数 483 浏览 2 评论 0原文

可能的重复:
可空类型和三元运算符:为什么是 `? 10 : null` 被禁止?

为什么这不起作用? 似乎是有效的代码。

  string cert = ddCovCert.SelectedValue;
  int? x = (string.IsNullOrEmpty(cert)) ? null: int.Parse(cert);
  Display(x);

我应该如何编码这个? 该方法采用 Nullable。 如果下拉列表选择了一个字符串,我需要将其解析为 int,否则我想将 null 传递给该方法。

Possible Duplicate:
Nullable types and the ternary operator: why is `? 10 : null` forbidden?

Why doesn't this work? Seems like valid code.

  string cert = ddCovCert.SelectedValue;
  int? x = (string.IsNullOrEmpty(cert)) ? null: int.Parse(cert);
  Display(x);

How should I code this? The method takes a Nullable. If the drop down has a string selected I need to parse that into an int otherwise I want to pass null to the method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

余生共白头 2024-08-09 02:58:18
int? x = string.IsNullOrEmpty(cert) ? (int?)null : int.Parse(cert);
int? x = string.IsNullOrEmpty(cert) ? (int?)null : int.Parse(cert);
青衫负雪 2024-08-09 02:58:18

我遇到过同样的事情......我通常只是将 null 转换为 (int?)

int? x = (string.IsNullOrEmpty(cert)) ? (int?)null: int.Parse(cert);

I've come across the same thing ... I usually just cast the null to (int?)

int? x = (string.IsNullOrEmpty(cert)) ? (int?)null: int.Parse(cert);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文