Know the month of a string variable in spanish

I have a string type variable that brings a date with the following format “yyyy-MM-dd” and I want to know what month it is in letters, but in Spanish, any ideas?

Can you try by changing to spanish in the culture info

DateTime.Parse(“5 mar 2019”,new CultureInfo(“es-ES”))

1 Like