Person Constructor (Fingerprint[])

SourceAFIS

Creates new Person object and initializes it with a list of Fingerprints.

Namespace:  SourceAFIS.Simple
Assembly:  SourceAFIS (in SourceAFIS.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	ParamArray fingerprints As Fingerprint() _
)
C#
public Person(
	params Fingerprint[] fingerprints
)
Visual C++
public:
Person(
	... array<Fingerprint^>^ fingerprints
)
JavaScript
SourceAFIS.Simple.Person = function(... fingerprints);

Parameters

fingerprints
Type: array<SourceAFIS.Simple..::..Fingerprint>[]()[]
Fingerprint objects to add to the new Person.

See Also