HtmlAgilityPack.HtmlWeb.RemoveMilliseconds C# (CSharp) Method

RemoveMilliseconds() private static method

private static RemoveMilliseconds ( System.DateTime t ) : System.DateTime
t System.DateTime
return System.DateTime
        private static DateTime RemoveMilliseconds(DateTime t)
        {
            return new DateTime(t.Year, t.Month, t.Day, t.Hour, t.Minute, t.Second, 0);
        }