You can maybe try this LINQ Query,
If(DateTime.TryParse(inputDate.ToString(), New DateTime()),
DateTime.Parse(inputDate.ToString()).ToString(“dd.MM.yyyy”),
String.Empty)
Hope this helps!
You can maybe try this LINQ Query,
If(DateTime.TryParse(inputDate.ToString(), New DateTime()),
DateTime.Parse(inputDate.ToString()).ToString(“dd.MM.yyyy”),
String.Empty)
Hope this helps!