5
ReSharper Curiosity: "Le paramètre n'est utilisé que pour le (s) contrôle (s) des conditions préalables."
Pourquoi ReSharper me juge pour ce code? 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 value, {0} has …
102
c#
resharper
preconditions