CTor
Namespace:
SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.9.0.0 (5.9.0)
Syntax public ProjectClone(
int id,
DateTime creationDate,
string name,
string description,
int parentId
)
Public Sub New (
id As Integer,
creationDate As DateTime,
name As String,
description As String,
parentId As Integer
)
Parameters
- id
- Type: SystemInt32
The id number of the clone, which is usually the clone number in sequence, so first clone is 1, second is 2 etc. - creationDate
- Type: SystemDateTime
the creation date the clone was taken - name
- Type: SystemString
the name of the clone - description
- Type: SystemString
the description the user has given for this clone - parentId
- Type: SystemInt32
The id of the parent of this clone, which means the clone this clone was created from. Can be 0, in which case this
clone is the root
See Also