preconditions पर टैग किए गए जवाब

5
रिस्पेरस क्यूरोसिटी: "पैरामीटर का उपयोग केवल पूर्व-भुगतान जांच (एस) के लिए किया जाता है।"
क्यों ReSharper मुझे इस कोड के लिए न्याय कर रहा है? 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 …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.