2009년 6월 22일 월요일

[C#]string.IsNullOrEmpty(str)

흔히 string 객체 중 null일 때 참조하여
string str = null;
...

if(str != null && str.length > 0)
{
...
}

대신 string class에 static function으로 존재한다.

댓글 없음: