I would like to print out on text file a range of dates-times that increment from 1 point in date-time to another by 1 second. 1977-08-11T07:30:43.000z to 1977-08-11T07:30:51.000z
Can i do that in vb.net without reading the last line of the text file before printing out the next line as i create the increments?
I have limited vb.net experience. Someone told me I had to read the last line as I generate the list. I desire a list that looks like this.
1977-08-11T07:30:43.000z
1977-08-11T07:30:44.000z
1977-08-11T07:30:45.000z
1977-08-11T07:30:46.000z
1977-08-11T07:30:47.000z
1977-08-11T07:30:48.000z
1977-08-11T07:30:49.000z
1977-08-11T07:30:50.000z
1977-08-11T07:30:51.000z
If i have to read the last line, my concern is being able to read the last line and converting it back into date that vb.net knows as a date not just a string.
Can i do that in vb.net without reading the last line of the text file before printing out the next line as i create the increments?
I have limited vb.net experience. Someone told me I had to read the last line as I generate the list. I desire a list that looks like this.
1977-08-11T07:30:43.000z
1977-08-11T07:30:44.000z
1977-08-11T07:30:45.000z
1977-08-11T07:30:46.000z
1977-08-11T07:30:47.000z
1977-08-11T07:30:48.000z
1977-08-11T07:30:49.000z
1977-08-11T07:30:50.000z
1977-08-11T07:30:51.000z
If i have to read the last line, my concern is being able to read the last line and converting it back into date that vb.net knows as a date not just a string.