Reputation: 85715
I need my dates to be in U.S date format. How do I change it so when I do DateTime converts it does this format?
In asp.net I put some globalization thing in the web.config but got no clue when it comes to mobile phones.
Upvotes: 0
Views: 666
Reputation: 1934
Either use DateTime.ToString() and pass your own date format string or set the culture.
Upvotes: 1