This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void CheckInput(int input, string methodName) { | |
if (input != 42) { | |
throw new ArgumentOutOfRangeException(nameof(input), $"{methodName} cannot be invoked with a non-42 value"); | |
} | |
} | |
public void DoFoo(int input) { | |
CheckInput(input, "DoFoo"); | |
// ... | |
} | |
public void DoBar(int input) { | |
CheckInput(input, "DoBar"); | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment