5
ReSharper Curiosity: “Thông số chỉ được sử dụng cho (các) kiểm tra điều kiện trước.”
Tại sao ReSharper lại đánh giá tôi về mã này? private Control GetCorrespondingInputControl(SupportedType supportedType, object settingValue) { this.ValidateCorrespondingValueType(supportedType, settingValue); switch(supportedType) { case SupportedType.String: return new TextBox { Text = (string)settingValue }; case SupportedType.DateTime: return new MonthPicker { Value = (DateTime)settingValue, ShowUpDown = true }; default: throw new ArgumentOutOfRangeException(string.Format("The supported type …
102
c#
resharper
preconditions