Convertion Integer Month to String

Hi everyone,

i want to converting integer month(04=> April) to String like in paranthesis.
EX : If user enter 04 or 4 system should know which month equals. In this example system log message out is => April
How can i do that?

Hello @yigit.aybey ,

You can try this:
System.Globalization.CultureInfo.InvariantCulture.DateTimeFormat.GetMonthName(int_MonthNumber)

Thanks!
Athira

1 Like

Hi @athira.somasekharan

thanks for answering and it worked.

Thank you.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.