C#フォーマット時間英語表示

サンプルコード:
DateTime date = DateTime.Now;
string strDate = date.ToString(“ddMMMyyyy", DateTimeFormatInfo.InvariantInfo);
DateTime st = DateTime.Parse(strDate);
Console.WriteLine(st.ToString());
Console.Read();

Source

Posted by arkgame