IntProperty.MinValue Property

Definition

Minimum allowed value for this property.

public:
 property Nullable<int> MinValue { Nullable<int> get(); void set(Nullable<int> value); };
public int? MinValue { get; set; }
public int? MinValue { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] set; }
member this.MinValue : Nullable<int> with get, set
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.MinValue : Nullable<int> with get, set
Public Property MinValue As Nullable(Of Integer)

Property Value

The minimum allowed value, or null if this property is not set.

Attributes

Remarks

This field is optional. It returns null when this property is not set. The value of this property must be less than or equal to the MaxValue property (assuming that the latter is defined).

Applies to