CSharp examples for System:DateTime Month
Get First Day In Month
using System.Globalization; using System;//from ww w. j a v a2s . c om public class Main{ public static DateTime GetFirstDayInMonth(DateTime date) { return new DateTime(date.Year, date.Month, 1); } }