What the fuck ?!!
Это у нас на работе такой код.
protected bool _IsDate (string strDate)
{
try
{
// Trap for the / in a date string. Reuters sends it that way
int intTrapped = 0;
string _strSeparator = "/";
intTrapped = strDate.IndexOf(_strSeparator);
if (intTrapped <=0)
{
return false;
}
return true;
}
catch
{
return false;
}
}
Это у нас на работе такой код.