In SQL Server <= 2008 R2, you can say:
SELECT CONVERT(CHAR(10), CONVERT(DATETIME, @myDate), 101)
+ ' ' + CONVERT(CHAR(5), CONVERT(DATETIME, @myDate), 8)
However this will yield leading zeros that you don't seem to want (and that nobody else seemed to catch). If you want to keep your m/d/yyyy format (which isn't advisable anyway - better to use a language- and region-ambiguous format like yyyy-mm-dd), you might be best off just keeping that portion of the string as is, and just converting the time as follows:
SELECT CONVERT(CHAR(5), CONVERT(DATETIME, '10:00 PM'), 8);
Of course for an arbitrary date you can brute force it as follows:
SELECT RTRIM(MONTH(@myDate)) + '/' + RTRIM(DAY(@myDate)) + '/' + RTRIM(YEAR(@myDate))
Combining those of course translates to, in C#:
DateTime.Now.ToString("M/d/yyyy HH:mm");
In SQL Server 2012, you will be able to use almost identical syntax in T-SQL:
SELECT FORMAT(SYSDATETIME(), 'M/d/yyyy HH:mm');
Result at time of writing:
2/25/2012 00:38
(I blogged about the new FORMAT() capabilities last August when I first saw the feature in CTP3. It's pretty powerful stuff.)
You can see a table showing all of the valid styles to use with CONVERT in this FAQ article I wrote in 2003. I also describe how you can make your own functions in a different FAQ article, but it doesn't explicitly cover the format you're after again because of the leading zeros.