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("M/d/yyyy");
http://msdn.microsoft.com/en-us/library/8kb3ffffd4.aspx