|
|
|
C# get Last day Of Month หาวันสุดท้ายของเดือนครับ (End Day Of Month) |
|
|
|
|
|
|
|
ลองดูครับ
Code (C#)
DateTime today = DateTime.Today;
DateTime endOfMonth = new DateTime(today.Year, today.Month, DateTime.DaysInMonth(today.Year, today.Month));
|
|
|
|
|
Date :
2013-11-19 14:15:43 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครัช
|
|
|
|
|
Date :
2013-11-19 18:48:34 |
By :
เบนซ์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วถุ้าเป็นวันแรกของเดือน โดยไม่นับเสาอาทิดละครับ
|
|
|
|
|
Date :
2015-10-09 12:05:34 |
By :
กก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
DateTime dd = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1);
dd = (dd.DayOfWeek == DayOfWeek.Sunday) ? dd.AddDays(1) : (dd.DayOfWeek == DayOfWeek.Saturday) ? dd.AddDays(2) : dd;
MessageBox.Show(dd.ToString());
โค้ดบ้านๆ จะประมาณนี้ครับ
|
|
|
|
|
Date :
2015-10-09 15:57:47 |
By :
lamaka.tor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|