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 7840325
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T15:44:37+00:00 2026-06-02T15:44:37+00:00

I have a list that holds Datetimes. To calculate the difference between 2 DateTime

  • 0

I have a list that holds Datetimes.

To calculate the difference between 2 DateTime i use TimeSpan.

public static List<DateTime> list = new List<DateTime>();
TimeSpan ts = new TimeSpan();
double result = 0;

ts = DateTime.Now - list[list.Count-1];
result = ts.TotalSeconds;

When debugging this code both the DateTime.Now and the list[list.Count-1] have DateTimes where the DateTime.Now is off course higher then the value of the list.

But for some reason i keep getting 0 in the variable result, how come exactly?

Best regards, Pete

  • 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-02T15:44:39+00:00Added an answer on June 2, 2026 at 3:44 pm

    I just tried the following, works perfectly okay.

                List<DateTime> list = new List<DateTime>();
                list.Add(DateTime.Now.AddDays(-1));
                list.Add(DateTime.Now);
                list.Add(DateTime.Now.AddDays(1));
                TimeSpan ts = new TimeSpan();
                double result = 0;
    
                ts = DateTime.Now - list[list.Count - 1];
                result = ts.TotalSeconds;
    

    Attached the debbuging picture:

    enter image description here

    Reasons for not working could be:

    1. Either your list is not being populated
    2. Or the value of ts.TotalSeconds is smaller than double range (Which can be practically not possible.)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a specialized list that holds items of type IThing : public class
I have the follow class and the list that holds it: public class Transport
I have a list that holds objects of type dynamic. When I use the
I have a class Team that holds a generic list: [DataContract(Name = TeamDTO, IsReference
Suppose I have two lists that holds the list of source file names and
I have a class that holds another objects inside it (List, Set and objects
I currently have a simple list view adapter that holds two rows of text.
I have a list like that: private List<T> myList = new ArrayList<T>(); I want
Hi guys I have 2 different List 1 that holds items that I see
I have a Linked List that holds contact information(name, date of birth, etc...). I

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.