一些有意思的库

Posted s5689412

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一些有意思的库相关的知识,希望对你有一定的参考价值。

FluentValidation

https://github.com/JeremySkinner/FluentValidation

using FluentValidation;

public class CustomerValidator: AbstractValidator<Customer> {
public CustomerValidator() {
RuleFor(customer => customer.Surname).NotEmpty();
RuleFor(customer => customer.Forename).NotEmpty().WithMessage("Please specify a first name");
RuleFor(customer => customer.Discount).NotEqual(0).When(customer => customer.HasDiscount);
RuleFor(customer => customer.Address).Length(20, 250);
RuleFor(customer => customer.Postcode).Must(BeAValidPostcode).WithMessage("Please specify a valid postcode");
}

private bool BeAValidPostcode(string postcode) {
// custom postcode validating logic goes here
}
}

Customer customer = new Customer();
CustomerValidator validator = new CustomerValidator();
ValidationResult results = validator.Validate(customer);

bool validationSucceeded = results.IsValid;
IList<ValidationFailure> failures = results.Errors;

以上是关于一些有意思的库的主要内容,如果未能解决你的问题,请参考以下文章

#include <stdio.h>是啥意思

有意思的pyinstaller打包

读懂CommonJS的模块加载

Android Volley 已弃用的库

Referenced Libraries是啥意思

ELF 中的库符号和用户符号