5
রিশ্যার কৌতূহল: "পরামিতি কেবল পূর্বশর্ত চেক (গুলি) এর জন্য ব্যবহৃত হয়।"
কেন রিশার্পার এই কোডটির জন্য আমাকে বিচার করছেন? 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} …
104
c#
resharper
preconditions