Hey guys,
How can I convert the month of a DateTime into German language?
Example:
DateTime.Now.ToString (“MMM”) => Dec
I want “Dez” for “Dezember”
thanks
Hey guys,
How can I convert the month of a DateTime into German language?
Example:
DateTime.Now.ToString (“MMM”) => Dec
I want “Dez” for “Dezember”
thanks
Hello!
You just have to set a CultureInfo variable and then set the German Language. Then you just have to convert passing the format and the culture.
Example:
Hope It Helps
Regards,
Hey Lucas,
THANK YOU SO MUCH!!!