Hi everyone
I am not too experienced using C#. I need to convert date in string format to date format. I do not want any time attached to the date.
The files have naming convention "fileIdentifer_YYYY-MM-DD". I am able to extract "YYYY-MM-DD":
string fileDate = "";
fileDate = fileName.Substring(fileName.Length - 14, 10);
Now, I need to convert fileDate so it is a date type.
How can I do this?
Thank you