I have a DateTime object in the format of 6/07/2016
, and I want to change it to be in the format of 6th July 2016
.
How can I do this in C#? Been looking around but only seem to find ways to turn strings into DateTime in this format. What if I already have a DateTime object? Convert to string first?
Thanks