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
現在はアクセスレベルが public であるメソッドにおいて、Reference Types である――もしくはそうである可能性がある――引数の値が null でない事をチェックしていない。実際の利用では null が入るケースは十分に想定できるため、例え引数が not NRT である場合についても引数が null である場合は System.ArgumentNullException を throw するべきである。また、テストにて null である場合についての System.ArgumentNullException もしくは他の適切な処理を行うことを確認すべきである。
public
null
System.ArgumentNullException
The text was updated successfully, but these errors were encountered:
修正は難しくないが、テストコードを作成することが非常に煩雑である。そのため、 #10 の解決後にコラボレーターに修正を促したい。これは現時点の計画であり、今後変更する可能性が高い。
Sorry, something went wrong.
No branches or pull requests
Description
現在はアクセスレベルが
public
であるメソッドにおいて、Reference Types である――もしくはそうである可能性がある――引数の値がnull
でない事をチェックしていない。実際の利用ではnull
が入るケースは十分に想定できるため、例え引数が not NRT である場合についても引数がnull
である場合はSystem.ArgumentNullException
を throw するべきである。また、テストにてnull
である場合についてのSystem.ArgumentNullException
もしくは他の適切な処理を行うことを確認すべきである。The text was updated successfully, but these errors were encountered: