I’m trying to use the method fromISO8601String but it always returns “”, no matter the string I pass in.
Even creating a new date, pulling the current date and converting that has the same result:
date = CreateObject("roDateTime")
currentISODate = date.ToISOString()
isoDate = date.FromISO8601String(currentISODate)
print isoDate
