dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteDateTime Structure / Subtraction Operator
A SQLiteDateTime value.
A System.TimeSpan value to subtract.

In This Topic
    Subtraction Operator
    In This Topic
    Subtracts the specified System.TimeSpan value from the SQLiteDateTime value and returns a new SQLiteDateTime structure.
    Syntax
    'Declaration
     
    Public Operator -( _
       ByVal d As SQLiteDateTime, _
       ByVal t As TimeSpan _
    ) As SQLiteDateTime
    public SQLiteDateTime operator -( 
       SQLiteDateTime d,
       TimeSpan t
    )

    Parameters

    d
    A SQLiteDateTime value.
    t
    A System.TimeSpan value to subtract.

    Return Value

    A new SQLiteDateTime structure.
    See Also