We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a string guard that supports both a min and max length of the string.
Guard.Against.LengthOutOfRange("abc", 2, 4); // passes Guard.Against.LengthOutOfRange("a", 2, 4); // throws Guard.Against.LengthOutOfRange("abcde", 2, 4); // throws
The text was updated successfully, but these errors were encountered:
Hi Ardalis, Can I work on this?
Sorry, something went wrong.
All yours; sorry I missed your toolong implementation yesterday.
Thanks, also I've refactored the implementation to use other guardCluases and be smaller. Please let me know if anything needs to improve or change.
HamidRezaAshkiyan
No branches or pull requests
Add a string guard that supports both a min and max length of the string.
The text was updated successfully, but these errors were encountered: