resharper-structured-logging
resharper-structured-logging copied to clipboard
`ToString` in parent classes is not considered
"Complex objects with default ToString() implementation probably need to be destructured" warning is shown when object inherit overriden ToString
from base class different from object
:
public class A
{
public override string ToString() => "Custom ToString";
}
public class B: A { }