1public static bool IsDate(Object obj) 2{ 3 DateTime result; 4 return DateTime.TryParse(obj.ToString(), out result); 5}