dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlTimeStamp Structure / Add Method / Add(PgSqlTimeStamp,PgSqlInterval) Method
The first item to add.
The second item to add.

In This Topic
    Add(PgSqlTimeStamp,PgSqlInterval) Method
    In This Topic
    Adds a PgSqlInterval to a PgSqlTimeStamp structure.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Add( _
       ByVal x As PgSqlTimeStamp, _
       ByVal t As PgSqlInterval _
    ) As PgSqlTimeStamp
    public static PgSqlTimeStamp Add( 
       PgSqlTimeStamp x,
       PgSqlInterval t
    )

    Parameters

    x
    The first item to add.
    t
    The second item to add.

    Return Value

    The new PgSqlTimeStamp that represents sum of the two arguments.
    See Also