タグ付けされた質問 「invalidoperationexception」

7
null許容オブジェクトには値が必要です
例外の説明にパラドックスがあります:Nullableオブジェクトには値(?!)が必要です これが問題です: 私はDateTimeExtendedクラスを持っています { DateTime? MyDataTime; int? otherdata; } そしてコンストラクタ DateTimeExtended(DateTimeExtended myNewDT) { this.MyDateTime = myNewDT.MyDateTime.Value; this.otherdata = myNewDT.otherdata; } このコードを実行する DateTimeExtended res = new DateTimeExtended(oldDTE); InvalidOperationExceptionメッセージをスローします: null可能オブジェクトには値が必要です。 myNewDT.MyDateTime.Value-有効であり、通常のDateTimeオブジェクトを含みます。 このメッセージの意味は何ですか?何が間違っていますか? oldDTEないことに注意してくださいnull。を削除しValueましたmyNewDT.MyDateTimeが、生成されたセッターが原因で同じ例外がスローされます。

26
ASP.NET MVC:このオブジェクトにはパラメーターのないコンストラクターが定義されていません
Server Error in '/' Application. -------------------------------------------------------------------------------- No parameterless constructor defined for this object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.MissingMethodException: No parameterless constructor …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.