Skip to content

Instantly share code, notes, and snippets.

@conrjac
Created December 13, 2017 14:47
Show Gist options
  • Save conrjac/c5322375530fff834ce1cc14cf297686 to your computer and use it in GitHub Desktop.
Save conrjac/c5322375530fff834ce1cc14cf297686 to your computer and use it in GitHub Desktop.
convert ISO8601 dates to SalesForce DateTime
public DateTime convertISO8601(string str)
{
return (DateTime)json.deserialize('"' + str + '"', datetime.class);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment