dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlTimeStamp Structure / Subtract Method / Subtract(PgSqlTimeStamp,TimeSpan) Method
A PgSqlTimeStamp structure to subtract from.
A System.TimeSpan value to subtract.

In This Topic
    Subtract(PgSqlTimeStamp,TimeSpan) Method
    In This Topic
    Subtracts a System.TimeSpan value from a PgSqlTimeStamp structure.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Subtract( _
       ByVal x As PgSqlTimeStamp, _
       ByVal t As TimeSpan _
    ) As PgSqlTimeStamp
    public static PgSqlTimeStamp Subtract( 
       PgSqlTimeStamp x,
       TimeSpan t
    )

    Parameters

    x
    A PgSqlTimeStamp structure to subtract from.
    t
    A System.TimeSpan value to subtract.

    Return Value

    The new PgSqlTimeStamp structure that represents the result of the subtract operation.
    See Also