Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
形式の文字列があります
2013年03月25日 18:30
そして、それらを次の形式の日時オブジェクトに変換したい
2013-03-25 18:30:00
どうすればこれを行うことができますか?
あなたが使用することができます:
var date = DateTime.Parse("Mar 25 2013 6:30PM"); Console.WriteLine(date.ToString()); /*This will output the date in the required format */