I'm creating a form where a user will be able to specify a beginning and end times using preset values. I would like to generate a list of string representations of available 15 min intervals between 9 AM and 5 PM in a single day.
|
|
or
Thats for the current day, in case you are saving the values in a database. |
||||||||||||||
|
|
|
DateTime has a .AddMinutes method. Start there. (DateTime.Now) |
||
|
|
|
Create an outer loop that has the start date given. Have this loop use the AddDays to add a day to it until the end date. Create a loop inside this loop and start with a time of 9AM and loop until 5PM with 15 minute increments using Silky's mentioning of the DateTime .AddMinutes Method. At the 15 minute increments you can add to a list of strings the Time. :) |
||
|
|
|
|
Something like the following should do the trick;
|
||
|
|
|
|
Here's the code
|
||||||
|
