Click or drag to resize

ConstructorResolvingMode Enumeration

Defines the mode used when resolving a constructor by a given parameter type.

Namespace:  TB.ComponentModel
Assembly:  UniversalTypeConverter (in UniversalTypeConverter.dll) Version: 2.0.0
Syntax
C#
public enum ConstructorResolvingMode
Members
  Member nameValueDescription
None0 No use of constructor resolving.
Strict1 A constructor is used only if it's parameter is exact of the given type.
Lax2 A constructor is used if it's parameter is compatible to the the given type an no data is lost. An example of a widening conversion is converting a value that is a 32-bit signed integer to a value that is a 64-bit signed integer.
See Also