Pertanyaan yang diberi tag «invalidoperationexception»

8
objek nullable harus memiliki nilai
Ada paradoks dalam deskripsi pengecualian: Objek nullable harus memiliki nilai (?!) Ini masalahnya: Saya punya DateTimeExtendedkelas, ya sudah { DateTime? MyDataTime; int? otherdata; } dan seorang konstruktor DateTimeExtended(DateTimeExtended myNewDT) { this.MyDateTime = myNewDT.MyDateTime.Value; this.otherdata = myNewDT.otherdata; } menjalankan kode ini DateTimeExtended res = new DateTimeExtended(oldDTE); melempar InvalidOperationExceptiondengan pesan: Objek nullable …

26
ASP.NET MVC: Tidak ada konstruktor tanpa parameter yang ditentukan untuk objek ini
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 …
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.