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?
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
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.