2016年5月4日 星期三

[C#] 取得本月的特定日期方法

 

假設要取得每月20號的資訊,變數要如何設定呢?

DateTime FirstDay = new DateTime(DateTime.Now.Year,DateTime.Now.Month, 20);

 

同樣的,如果需要到小時分秒也ok

DateTime FirstDay = new DateTime(DateTime.Now.Year,DateTime.Now.Month, 20, 12, 0, 0);

沒有留言:

張貼留言