This is the property declaration in question:
[RangeValidator(1,RangeBoundaryType.Inclusive,255,RangeBoundaryType.Inclusive,MessageTemplate = "StartFlexibility is out of range")]
public byte StartFlexibility { get; set; }
When the validate method is called, a FormatException is thrown telling me that the value type needs to be Int32.
How to fix, please?