Class.getConstructors

Returns an array of all constructors defined by this class. This does not include any constructors inherited from a base class, nor the default constructor.

If a class declares no constructors, this method will return an empty array. To construct an Object of such a type, the create() method defined by Class should be used.

class Class
abstract override const
const(Constructor)[]
getConstructors
()

Return Value

Type: const(Constructor)[]

And array of all constructors on the class.

See Also

create

Meta