Mike
Mike

Reputation: 1233

Convert CrmDateTime to System.DateTime

Easy question of the day...

What do I need to do to convert a CrmDateTime to a .NET System.DateTime?

Upvotes: 0

Views: 2868

Answers (1)

Olivier Payen
Olivier Payen

Reputation: 15268

DateTime.Parse(crmdatetime.Value)

Upvotes: 3

Related Questions