CRR0016 - Method call's return value is ignored
This analyzer detects calls to non-void methods where the return value is not considered. Normally, if a method returns data, you should check or save the output. Consider the following example.
In this code, the programmer expects that the Replace method modifies the source string. Since it is not so, the statement is useless and should be changed as follows.