Converts the date to start from midnight.
using System;
using System.Collections.Generic;
using System.Text;
namespace Nucleo
{
public static class DateTimeUtility
{
/// <summary>
/// Converts the date to start from midnight.
/// </summary>
/// <param name="beginDate">The date to convert.</param>
/// <returns>A converted date.</returns>
public static DateTime ConvertToBeginDate(DateTime beginDate)
{
return new DateTime(beginDate.Year, beginDate.Month, beginDate.Day, 0, 0, 0);
}
}
}
Related examples in the same category