This will be a running blog entry that I’ll update periodically when I have new ideas.
string.IsNullOrEmpty:
public static bool IsNullOrEmpty(this string str)
{
return string.IsNullOrEmpty(str);
}
Mobile development code, ramblings, and opinions.
This will be a running blog entry that I’ll update periodically when I have new ideas.
string.IsNullOrEmpty:
public static bool IsNullOrEmpty(this string str)
{
return string.IsNullOrEmpty(str);
}
© 2011 Koushik Dutta | www.koushikdutta.com
2 comments:
I like this extension method for neat threadsafe updates to the UI.
Check out mine at my development blog. Includes IsNullOrEmptyTrimmed, IsEither´1, IsNeither´1, GetAtMost, SafeConvert,
ToArray´1
Post a Comment