Windows error 0x80131303, -2146233597

Detailed Error Information

CORDBG_E_CLASS_NOT_LOADED[1]

Message"A class is not loaded."
Comment A class is not loaded.

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 Code4867 (0x1303)

Questions

2votes
0answers

Error "A class is not loaded. (Exception from HRESULT: 0x80131303)"

I am trying to debug arrays using MonoDevelop but I've noticed getting these errors. I am using c# and the program runs fine even with this error, although I'm not able debug it step by step. int[] a = {1,2,3,4}; I'm not able to see what's in the array "a" [...] read more
c#
error-handling
2votes
1answer

What causes CORDBG_E_CLASS_NOT_LOADED (HRESULT: 0x80131303)

While attempting to debug an application, I keep noticing that two of my arrays and one of my lists seems to be mysteriously... Not there. The error given for that (upon pausing the application and looking through my compiler's variable list) is "A class is not loaded HRESULT: 0x80131303". After [...] read more
c#
hresult
0votes
1answer

CORDBG_E_CLASS_NOT_LOADED (HRESULT: 0x80131303) error with List<double>

I'm creating a List variable. I get this error right when I initialize it like so: List<double> nums = new List<double>(); Has anyone else encountered this before? I haven't been able to find very much info about his at all. I'm coding in C# using MonoDevelop. read more
c#
.net
monodevelop

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