GlobalPositioningSystemDateSecondsDifference Method  | 
 
            Computes the number of seconds that have elapsed from this date to the
            other date.
            
 
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic double SecondsDifference(
	GlobalPositioningSystemDate other
)
Public Function SecondsDifference ( 
	other As GlobalPositioningSystemDate
) As Double
public:
double SecondsDifference(
	GlobalPositioningSystemDate other
)
member SecondsDifference : 
        other : GlobalPositioningSystemDate -> float 
Parameters
- other
 - Type: AGI.Foundation.TimeGlobalPositioningSystemDate
The other date, which is the end of the interval. 
Return Value
Type: 
DoubleThe number of seconds that have elapsed from this date to the other date.
Remarks
            This method subtracts the date on which it is called from the other
            date and returns the number of seconds between them.
            
See Also