Convert Date.Now to 24 hour format

Using Date.Now gives me a string such as "4/19/2007 2:37:25 PM", but I need "4/19/2007 14:37:25". How can I "tell" the Date.Now function that I want the time to be in 24 hr format instead of 12 hr? Thanks...
[275 byte] By [nbrege] at [2008-1-2]
# 1
As long as you don't worry about culture:

Code Snippet

string s = DateTime.Now.ToString("M/d/yyyy H:mm:ss");

nobugz at 2007-9-13 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...
# 2
Thanks, that worked...
nbrege at 2007-9-13 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...