I have a string: "20180830" which represents 30 august 2018 I want to go to string: "30/08/2018" So that I can do: DateTime parsedDate = DateTime.Parse("30/08/2018"); and have a DateTime instead of a string,
Tried everything but didn't succeed. Needs some help.