字串比較容易造成不必要的負擔
若要判定字串是否是空的長度,請使用 Length 屬性
.Net 2.0 之後的版本亦可使用 string.IsNullOrEmpty()
.Net 2.0 之後的版本亦可使用 string.IsNullOrEmpty()
// Bad
if ( str != "")
{
...
}
// Good
if ( str.Length > 0)
{
...
}
沒有留言:
張貼留言