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
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
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