I have a string datetime like this in fr-CA time : "16 août 1980".
How can i change this string to US time like "16 aug 1980" or "august 16 1980" using c#?
I need create a cultureinfo of this time?
I have a string datetime like this in fr-CA time : "16 août 1980".
How can i change this string to US time like "16 aug 1980" or "august 16 1980" using c#?
I need create a cultureinfo of this time?
Yes, you need to specifiy the cultureInfo. In this case, you can use
DateTime.ParseExact
like so :