hello, I write “blabla” + DateTime.Today.ToString(“dd.MM.yyyy”) when sending mail, but I want it to put the date in parentheses. What should I do?
Sample:
blabla (09.06.2022)
hello, I write “blabla” + DateTime.Today.ToString(“dd.MM.yyyy”) when sending mail, but I want it to put the date in parentheses. What should I do?
Sample:
blabla (09.06.2022)
String.Format("{0} ({1})", "YourTextOrTextVar", Today.ToString("dd.MM.yyyy"))
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.