65.9K
CodeProject is changing. Read more.
Home

Handy Extension Methods

emptyStarIconemptyStarIconemptyStarIconemptyStarIconemptyStarIcon

0/5 (0 vote)

Jun 3, 2011

CPOL
viewsIcon

8202

public static bool IsNullEmptyOrWhitespace(this string value){ return string.IsNullOrEmpty(value) || string.IsNullOrEmpty(value.Trim());}In C# 4.0, you already have such a function.string.IsNullOrWhiteSpace(value)

public static bool IsNullEmptyOrWhitespace(this string value)
{
        return string.IsNullOrEmpty(value) || string.IsNullOrEmpty(value.Trim());
}
In C# 4.0, you already have such a function.
string.IsNullOrWhiteSpace(value)