In .NET Core C#, how do I parse this Date string: 'Jun 3, 2021 4:36:56 PM EDT'
Tried this with Culture en-US, and it does not work:
DateTime.ParseExact("Jun 3, 2021 4:36:56 PM EDT", "MMM dd, yyyy hh:mm:ss tt K", CultureInfo.CurrentCulture);
Thanks, Jim