0
與DefaultOrEmpty工作在默認或空的情況下,我想提供一些價值:在LINQ
string[] str = {string.Empty, "hello", "world" };
var select = str.Select(s => s).DefaultIfEmpty("nodata");
GridView1.DataSource = Select;
GridView1.DataBind();
爲什麼我的網格沒有得到填充:
nodata
hello
world
相反,我得到:
hello
world
+1。是啊。我沒有看到默認或空的需求位! – RichardOD 2009-12-13 13:58:46