lets say I have an Enum with values 0-100, so for example
public enum Test {
T0 = 0,
T1 = 1,
...
}
My idea was to use
[Range(0, 10)]
Is this a bug?
How do I limit the number of visible Enums?
*** Edit: I also tried it with a custom ValidationAttribute annotation, without success.

Comment