So i'm trying to validate date in format DDMMYYYY.
string date = "12031996";
i want to be able to validate if what user entered is in this specific format. And also want to be able to check if the year is in range of 1980 - 2005.
I'm new to C# so please forgive if it sounds like a stupid question. Thanks :)