bool getIsConvertTime(string str) { try { (Convert.ToDateTime(str)).ToString("yyyy-mm-dd"); return true; } catch { return false; } }