ReSharper 2024.1 Help

Code inspection: Method return value is never used (private accessibility)

This inspection reports non-public methods that are called somewhere in the local scope, but none of the calls use its return value. This often indicates that the method is not functioning as intended.

If the method does not change the program state, it might be redundant, and you may consider removing it. Otherwise, you can make the method void, which will make its intent clearer.

Last modified: 06 June 2024