Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8271491
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:51:38+00:00 2026-06-08T06:51:38+00:00

Is there a way to make a list of time range? For example: A

  • 0

Is there a way to make a list of time range?
For example:
A list containing:
12:00 to 1:00 pm
1:00 to 2:00 pm
etc…
Where the dividing section is configuration.
I think you have to use datetime and divide it to a certain number(in this case one hour)

Could someone please point me to the right direction or provide me an example?

Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T06:51:42+00:00Added an answer on June 8, 2026 at 6:51 am

    There’s no built-in type that defines a time-range but it would be pretty easy to create one by combining a DateTime and a TimeSpan. For example:

    struct TimeRange
    {
        private readonly DateTime start;
        private readonly TimeSpan duration;
    
        public TimeRange ( DateTime start, TimeSpan duration )
        {
            this.start = start;
            this.duration = duration;
        }
    }
    

    You could then build a List<TimeRange> using a specific DateTime as the starting point and adding the required TimeSpan for each element. For example, here’s a very basic implementation of TimeRange including a method called Split which returns an IEnumerable<TimeRange> based on the current TimeRange and the required duration of the sub-ranges.

    struct TimeRange
    {
        private readonly DateTime start;
        private readonly TimeSpan duration;
    
        public TimeRange ( DateTime start, TimeSpan duration )
        {
            this.start = start;
            this.duration = duration;
        }
    
        public DateTime From { get { return start; } }
    
        public DateTime To { get { return start + duration; } }
    
        public TimeSpan Duration { get { return duration; } }
    
        public IEnumerable<TimeRange> Split (TimeSpan subDuration)
        {
            for (DateTime subRangeStart = From; subRangeStart < this.To; subRangeStart += subDuration)
            {
                yield return new TimeRange(subRangeStart, subDuration);
            }
        }
    
        public override string ToString()
        {
            return String.Format ("{0} -> {1}", From, To);
        }
    }
    

    You can then do something like this:

    TimeRange mainRange = new TimeRange(DateTime.Now, new TimeSpan(12, 0, 0));
    List<TimeRange> rangeList = mainRange.Split(new TimeSpan(1, 0, 0)).ToList();
    

    This will give a list of 12 time ranges of 1-hour duration starting from the current time.

    ** Update **

    Note that the above implementation is VERY basic. The Split method, for example, will happily produce a lits of ranges where the end of the last sub-range is beyond the end of the parent range if the sub duration is not an integral division of the parent range. It would be hard to add checks for this kind of thing, though. The real question is what you want to happen in those kind of scenarios.

    It would also be very easy to create a static TimeRange.CreateList method that builds a List<TimeRange> without the need for an explicit parent range.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to make a list of classes behave like a set
Is there any way to make this work in Java? public static void change(List<?
I'm wondering if there's any way to make the text of an unordered list
Is there a way to make Timeline start recording EXACTLY at the time where
Is there a way to have a collection or list where I can provide
Is there a way to make a button's background color change from a color
Is there a way to make MySQL cause some kind of error when doing
Is there a way to make the SVG version of an image not being
Is there a way to make each form, (all controls, all strings, all integers
Is there a way to make my mysql and php server automatically display dates

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.