Share via


IdentityColumnInfo Constructor (Int64, Int64)

Initializes a new instance of the IdentityColumnInfo class using the specified seed and increment values.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Sub New ( _
    seed As Long, _
    increment As Long _
)
'Usage
Dim seed As Long
Dim increment As Long

Dim instance As New IdentityColumnInfo(seed, increment)
public IdentityColumnInfo(
    long seed,
    long increment
)
public:
IdentityColumnInfo(
    long long seed, 
    long long increment
)
new : 
        seed:int64 * 
        increment:int64 -> IdentityColumnInfo
public function IdentityColumnInfo(
    seed : long, 
    increment : long
)

Parameters

  • seed
    Type: System.Int64
    The identity seed of the identity column.
  • increment
    Type: System.Int64
    The identity increment of the identity column.