Windows error 0x80131603, -2146232829

Detailed Error Information

COR_E_TARGET[1]

Message"Attempt to invoke non-static method with a null Object."
Comment - If you attempt to invoke a non-static method with a null Object - If you atte

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code5635 (0x1603)

Questions

0votes
1answer

Access bools of a model class through reflection and access their values

I have a model class: using System; using System.Collections.Generic; namespace UserManagement.Models { public partial class ComBox { public int FkSystem { get; set; } public int FkUsers { get; set; } public bool? Pkw { get; set; } public bool? Trpv { get; set; } public bool? Trcv { get; [...] read more
c#
asp.net-core
razor
blazor-server-side

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0