Hi As Dauvis said, the Batch process running in CIL, so .NET Language. As per my esperience, it's always suggest to use the .NET methods in order to avoid different behaviour between CIL or not. So, in your case, try with : utcDateTime c; Date d; System.Globalization.CultureInfo culture = System.Globalization.CultureInfo::get_InvariantCulture(); c = System.DateTime::ParseExact( ResultSet....., 'M/d/yyyy', culture); d = DateTimeUtil::date(c);
↧