C# 中有取消字符串无效的简写方法吗?

发布于 2024-08-29 15:48:07 字数 433 浏览 5 评论 0原文

C# 中有取消字符串无效的简写方法吗?

这相当于(如果“x”是一个字符串):

string y = x == null ? "" : x;

我想我希望有一些运算符可以起到如下作用:

string y = #x;

一厢情愿,嗯?

到目前为止我得到的最接近的是字符串类的扩展方法:

public static string ToNotNull(this string value)
{
    return value == null ? "" : value;
}

它允许我做:

string y = x.ToNotNull();

对此有任何改进吗?

Is there a shorthand way to denullify a string in C#?

It would be the equivalent of (if 'x' is a string):

string y = x == null ? "" : x;

I guess I'm hoping there's some operator that would work something like:

string y = #x;

Wishful thinking, huh?

The closest I've got so far is an extension method on the string class:

public static string ToNotNull(this string value)
{
    return value == null ? "" : value;
}

which allows me to do:

string y = x.ToNotNull();

Any improvements on that, anyone?

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

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

发布评论

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

评论(2

画▽骨i 2024-09-05 15:48:07

这将起作用:

string y = x ?? "";

请参阅 http://msdn.microsoft.com/en-us/库/ms173224.aspx

This will work:

string y = x ?? "";

See http://msdn.microsoft.com/en-us/library/ms173224.aspx

森末i 2024-09-05 15:48:07

如果您经常需要此功能,您可能需要考虑创建自己的类型,而不是扩展方法,该类型的行为类似于 Nullable 并与 System.Nullable.GetValueOrDefault(); 共享相同的用法;方法。不幸的是,您只能在值类型上使用 System.Nullable,因此您不能将可为 null 的字符串作为标准。

If you need this reguarly, instead of an extension method you might want to consider creating your own type which behaves like a Nullable and shares the same usage as there is a System.Nullable.GetValueOrDefault(); method. Unfortunately, you can only use System.Nullable on value types so you can't make a nullable string as standard.

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