CSharp examples for System:DateTime Day
Set To Begin Of Day
using System;// w w w . j ava 2 s . c o m public class Main{ #region Public Methods and Operators public static DateTime SetToBeginOfDay(this DateTime date) { return new DateTime(date.Year, date.Month, date.Day); } }