2011-04-11 44 views

回答

6

請嘗試以下

string s = (i["property"] ?? "none").ToString(); 
2

如果索引返回object

(i["property"] ?? (object)"none").ToString() 

或者只是:

(i["property"] ?? "none").ToString() 

如果string

i["property"] ?? "none" 
+1

+1在這種特殊情況下,字符串'已經正確加寬沒有演員。 (雖然沒有指定'i [「property」] * *是*對象...) – 2011-04-11 19:42:31

2

替代品的樂趣。

void Main() 
{ 
string s1 = "foo"; 
string s2 = null; 
Console.WriteLine(s1.Coalesce("none")); 
Console.WriteLine(s2.Coalesce("none")); 
var coalescer = new Coalescer<string>("none"); 
Console.WriteLine(coalescer.Coalesce(s1)); 
Console.WriteLine(coalescer.Coalesce(s2)); 
} 
public class Coalescer<T> 
{ 
    T _def; 
    public Coalescer(T def) { _def = def; } 
    public T Coalesce(T s) { return s == null ? _def : s; } 
} 
public static class CoalesceExtension 
{ 
    public static string Coalesce(this string s, string def) { return s ?? def; } 
} 
+0

+1發佈時間。然而,像這樣的方法存在的一個問題是某些運算符('&&','||','??','?:'等)是懶惰的。在這種情況下,Coalesce函數的參數被熱切地評估。這裏沒關係,但可能。想象一下,「無」真的是'Foo(x)'。這可以通過使用lambda/func來解決,但C#語法不會進行任何神奇/自動提升,因此可能會很快變得麻煩。 – 2011-04-11 19:59:07

相關問題