Constructor ValueContainer
ValueContainer()
Initializes a new instance of the ValueContainer<T> struct.
public ValueContainer()
ValueContainer(Action)
Initializes a new instance of the ValueContainer<T> struct with the specified action which is executed when value is changed.
public ValueContainer(Action changed)
Parameters
changed
ActionAction to call when value is changed.
ValueContainer(T?)
Initializes a new instance of the ValueContainer<T> struct with the specified default value.
public ValueContainer(T? value)
Parameters
value
TDefault value.