↧
Answer by Nick for How to remove time portion of date in C# in DateTime...
Have a look at the DateTime.Date property.Gets the date component of this instance.
View ArticleHow to remove time portion of date in C# in DateTime object only?
I need to remove time portion of date time or probably have the date in following format in object form not in the form of string.06/26/2009 00:00:00:000I can not use any string conversion methods as I...
View Article