2012年12月20日木曜日

C#で 2か月前の日付の文字列を得る

C#で今日の日付と2か月前の日付の文字列を得るサンプル


string kyounohiduke = DateTime.Today.ToString("yyyy/MM/dd");
string nikagetsumae = DateTime.Today.AddMonths(-2).ToString("yyyy/MM/dd");

0 件のコメント:

コメントを投稿