Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How check intersection of DateTime periods

Hello guys I have two datetime ranges old Check in, Check Out and New Check in, Check Out how i can compare this two date time ranges each other if Old Range contains or equals new Range?

share|improve this question
1  
Have you seen: stackoverflow.com/questions/7325124/… – kd7 Dec 2 '11 at 18:12

marked as duplicate by Brandon, Hans Passant, Austin Salonen, Dan J, C. A. McCann Dec 2 '11 at 18:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

Not exactly sure what you're trying to accomplish.

Simply put, you have 4 cases:

  1. Old range contains new range
  2. New range contains old range
  3. Old range starts before new range, but also ends before new range
  4. New range starts before old range, but also ends before old range

If you want to test all of these, you need to if, else if them all. But if you only care about case 1, you can test that by doing this sort of thing:

        var oldCheckout = DateTime.Now.AddMinutes(-500);
        var oldCheckin = DateTime.Now.AddMinutes(-30);
        var newCheckout = DateTime.Now.AddMinutes(-400);
        var newCheckin = DateTime.Now.AddMinutes(-50);

        if (oldCheckout < newCheckout && newCheckin < oldCheckin)
            return true;
        else
            return false;
share|improve this answer

you can simply compare like this:

 DateTime d1 = DateTime.Now.AddDays(3);
            DateTime d2 = DateTime.Now;

            if (d2 > d1)
            {
                Console.WriteLine("d1 is less than d2");

            }
            else
            {
                Console.WriteLine("d2 is less than d1");
            }
share|improve this answer
oh i am delay in answering – Peeyush Dec 2 '11 at 19:31

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