the date is actually a string being read in from a text file in the format
MM/dd/yyyy
how can i add 7 days onto the date?
Printable View
the date is actually a string being read in from a text file in the format
MM/dd/yyyy
how can i add 7 days onto the date?
Convert the String to a Date, probably using Date.TryParseExact, and then call AddDays on that Date.