开发者

ReSharper Possible InvalidOperationException

public class BloodPressure {
    public Int16? Diastolic { get; set; }

    private Boolean IsValid {
        get {
            var valid = false;

            if (this.Diastolic.HasValue && this.Systolic.HasValue) {
                if ((this.Diastolic.Value >= 0) && (this.Systolic.Value >= 0)) {
                    valid = true;
                }
            }

            return (valid);
        }
    }

    public Int16? Systolic { get; set; }

    public override String ToString() {
        var result = "";

        if (this.IsValid) {
            result = this.Systolic.Value.ToString("0") + "/" + this.Diastolic.Value.ToString("0");
        }
        else {
            result = null;
        }

        return (result);
    }
}

This is the line ReSharper complains about:

result = this.Systolic.Value.ToString("0") + "/" + this.Diastolic.Value.ToString("0");

Since I'm calling my validation logic beforehand I can be sure that both Systolic and Diastolic will have values I can use. Is ReSharper not seeing that, or is it complaining about something else?

Interestingly, it doesn't have a problem with this section:

if ((this.Diastolic.开发者_Python百科Value >= 0) && (this.Systolic.Value >= 0)) {
    valid = true;
}


ReSharpers detection capabilities of stuff like this has its boundaries. ReSharper doesn't recognize that the call to this.IsValid basically is equivalent to this.Diastolic.HasValue && this.Systolic.HasValue with regards to that problem, i.e. ReSharper looks for those checks only in the same method/property.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜