Contact: aviboots(AT)netvision.net.il
39,926 questions
51,859 answers
573 users
using System; class Program { static void Main() { DateTime now = DateTime.Now; string s = now.ToString("dd/MM/yyyy HH:mm:ss"); Console.WriteLine(s); } } /* run: 11/09/2020 09:05:22 */