vote up 1 vote down star

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.

flag
What you mean by list? List<T>? An array? – Alfred Myers Aug 18 at 2:19

5 Answers

vote up 3 vote down check
List<string> query = Enumerable.Range(0, 33).Select(i => 
    DateTime.Today.AddHours(9).AddMinutes(i * 15).ToString()).ToList();

or

int i = -1;
while(DateTime.Today.AddHours(9).AddMinutes(i * 15).Hour < 17)
    Console.WriteLine(DateTime.Today.AddHours(9).AddMinutes(15 * (++i)));

Thats for the current day, in case you are saving the values in a database.

link|flag
1  
Very cool, isn't it! The more you use LINQ, the less you use foreach. – rp Aug 18 at 2:46
I use it all the time, .ToList().ForEach – Yuriy Faktorovich Aug 18 at 2:49
1  
Cool, but I wouldn't call that clear code, especially that magic number 33 on the Range() – Vinko Vrsalovic Aug 18 at 9:09
Vinko--Your answer is riddled with magic numbers! – rp Aug 18 at 16:40
While the last example took a little bit to grasp, it didn't cause an out of memory error when used in ASP.Net, so I'm using it for now. – Shurik Aug 18 at 17:11
show 8 more comments
vote up 6 vote down

DateTime has a .AddMinutes method. Start there. (DateTime.Now)

link|flag
+1 for offering a simple explanation without feeding the answer. – ph0enix Aug 18 at 13:51
vote up 0 vote down

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.

:)

link|flag
vote up 2 vote down

Something like the following should do the trick;

for (var time = new DateTime(2000,1,1,9,0,0); time <= new DateTime(2000,1,1,17,0,0); time = time.AddMinutes(15))
{
  Console.WriteLine("{0:t}", time);
}
link|flag
vote up 3 vote down

Here's the code

        DateTime start = new DateTime(1900, 1, 1, 9, 0, 0);
        DateTime end = new DateTime(1900, 1, 1, 17, 0, 0);
        DateTime current = start;
        while (current <= end)
        {
            Console.WriteLine(current.ToString("HH:mm"));
            current = current.AddMinutes(15);
        }
link|flag
I chose this answer for it's clarity. – Shurik Aug 18 at 15:39
Then I tried to use it in an ASP.Net application and got an out of memory error. – Shurik Aug 18 at 17:10
Because it wasn't that clear then :-) You probably messed up the loop and made it to never terminate. – Vinko Vrsalovic Aug 18 at 17:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.