I'd like to convert a localized string (preferably any supported language) to a datetime object. The string is for example (in dutch): woensdag 3 juni 2015 9:12:14 uur CEST
The localized string is always of the same format: [day name] [day] [month] [year] [hour] [minute] [second] [literal word for hour] [time zone] The string provided to the program can't be changed on the host application (not enough privileges).
I've read that in C# .NET I need to use something like an InvariantCulture object to change a DateTime object to a localized string date.
Is it however possible to go the other way around? If so is it possible with my requirements above?
Thanks for any help in advance!