IsNull
check value is null
Source
pubic static bool IsNull(this object source)
{
return source == null;
}
Example
string foo = null;
if(foo.IsNull())
{
///
}
ExtensionMethod.NET Home of 880 C#, Visual Basic, F# and Javascript extension methods
check value is null
pubic static bool IsNull(this object source)
{
return source == null;
}
string foo = null;
if(foo.IsNull())
{
///
}