2013-12-09 36 views
1

我編程在C#中,並定義2產​​品尺寸陣列:如何決定2維數組有價值?

holidays[1, 1] = "元旦"; 
holidays[2, 14] = "情人節"; 
holidays[3, 8] = "婦女節"; 
holidays[3, 12] = "植樹節"; 
holidays[4, 1] = "愚人節"; 
holidays[5, 1] = "勞動節"; 
holidays[5, 4] = "青年節"; 
holidays[5, 12] = "護士節"; 
holidays[5, 14] = "母親節"; 
holidays[5, 14] = "助殘日"; 

的價值如何判斷爲空?

holidays[i,j] != string.Empty 

在asp.net中沒有效果。

回答

1

如果沒有文本之間的空間,您可以阿洛斯使用

!string.IsNullOrWhitespace(holidays[i, j]) 

根據文檔string.IsNullOrWhitespace計算結果爲: -

return String.IsNullOrEmpty(value) || value.Trim().Length == 0; 

方法String.IsNullOrWhitespace

指示指定的字符串是否爲空,空白或僅由空格字符組成。

1

嘗試使用:

!string.IsNullOrEmpty(holidays[i, j])