I have to convert string in mm/dd/yyyy format to datetime variable but it should remain in mm/dd/yyyy format.
string strDate = DateTime.Now.ToString(\"MM/dd/
The following works for me.
string strToday = DateTime.Today.ToString("MM/dd/yyyy");