How do I subtract two DateTime values from another DateTime value and have the result saved to a double?
Use DateTime.Subtract which will return TimeSpan , then use TotalSeconds property of the result which is of type double.