How do I get today\'s date in C# in mm/dd/yyyy format?
I need to set a string variable to today\'s date (preferably without the year), but there\'s got to be a bette
DateTime.Now.ToString("dd/MM/yyyy");