You can't create a DateTime object without a time in it. It always has some time in it.
If you want to output it without a time portion, you can use a format string to do so:
date.ToString("MM/dd/yyyy");
Standard Date and Time Format Strings
Custom Date and Time Format Strings
As others have said, you can access date.Date
to get a value with any specific time information omitted, but that will still have a time of 00:00 AM.