I've run into a problem that's driving me crazy. In my application (ASP.NET MVC2 /.NET4), I simply running this:
DateTime.Now.ToShortTimeString()
All the examples I've seen indicate I should get something like: 12:32 PM
, however I'm getting 12:32
without the AM/PM.
I launched LinqPad 4 to see if I could replicate this. Instead, it returns 12:32 PM
correctly.
What the hell?