IntProperty.MaxValue Property

Definition

Maximum allowed value for this property.

public:
 property Nullable<int> MaxValue { Nullable<int> get(); void set(Nullable<int> value); };
public int? MaxValue { get; set; }
public int? MaxValue { [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.MaxValue : 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.MaxValue : Nullable<int> with get, set
Public Property MaxValue As Nullable(Of Integer)

Property Value

The maximum 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 greater than or equal to the MinValue property (assuming that the latter is defined).

Applies to