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.
object
string
Use a bit of RegEx:
Regex.Match(Date.Now.ToString(), @"^.*?(?= )");
Produces a date in the format: dd/mm/yyyy