I have an integer public int[] array {get; set;}.
I have used Maximum and Minimum length to specify a range for the array. I want to specify the same for the integer stored in the array
What code or approach do you have so far?
[Minimum(0), Maximum(100)]
public int[] array {get; set;}
What are you wanting to achieve?
I have an integer public int[] array {get; set;}. I have used Maximum and Minimum length to specify a range for the array. I want to specify the same for the integer stored in the array
What code or approach do you have so far?
[Minimum(0), Maximum(100)] public int[] array {get; set;}
Additional context
No response