27 9月 2011

[C#] 當檢查字串長度時,使用Length

字串比較容易造成不必要的負擔
若要判定字串是否是空的長度,請使用 Length 屬性

.Net 2.0 之後的版本亦可使用 string.IsNullOrEmpty()

// Bad
if
( str != "")
{
...
}


// Good
if ( str.Length > 0)
{
...
}



沒有留言:

張貼留言