FEVOR is an abbreviation for Fluent Extensible Validator and it’s a .NET validation library with lots of features that simplify the validation process in development by abstracting away the complex logic of conditional statements.
Here’s a quick sample code to give you an idea of how FEVOR will enhance your validation process:
"abcdef".Check("s") .IsNotNull() .IsLongerThan(1, "string too short") .IsAlpha("the string should have only letters!") .IsValidHexColor("this is not a valid HEX color"); n.Check("n").IsInRange(-10,10).IsGreaterThan(0);
0 average based on 2 ratings.