C# 中有取消字符串无效的简写方法吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将起作用:
请参阅 http://msdn.microsoft.com/en-us/库/ms173224.aspx
This will work:
See http://msdn.microsoft.com/en-us/library/ms173224.aspx
如果您经常需要此功能,您可能需要考虑创建自己的类型,而不是扩展方法,该类型的行为类似于 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.