Generic Checknull method
Generic checkNull method:
class Utils
{
public Utils()
{
}
public static bool
checkNull<T1>(T1 t1)
{
if (t1 == null)
return true;
else
return false;
}
}