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
I should implement Helpers method as fluent style:
bool isUpperCase = "Hello World".Is.UpperCase; bool isBlank = "Hello".Is.Blank; bool isNotNull = "Hi".Is.Not.Null; public class Utility<T> { public String Value { get; protected set; } public Utility(T value) { Value = value; } } public class StringUtility : Utility<String> { } public static class StringHelper { public static StringUtility<String> Is(this String that) { return new StringUtility(that); } }
Advantages:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I should implement Helpers method as fluent style:
Advantages:
The text was updated successfully, but these errors were encountered: