Check for Null value

Niladri.Biswas
Posted by Niladri.Biswas under C# category on | Points: 40 | Views : 1244
public static bool CheckNull<T>(T value)
{
if (value == null)
{
return true;
}

return false;
}

Comments or Responses

Login to post response