Quote:
Originally Posted by 0xd4d
System.Double[,] is a type that is auto-generated at runtime by the CLR so it's impossible to find the constructor in any assembly (in this case mscorlib). You might need to update ImageReader.cs.
|
0xd4d,
you said correct thing, but I'm a bit confused and thinking about right mitigation of this kind of issue...
here is the case -
http://prntscr.com/7a28hl
we are reading the instruction, it wants to create the Double [][] array,
but no one has that type anywhere......
of course we could not simulate the work of mscorlib (it creates this type in runtime?)
so we can't also return null from the reading method......
or we could and have to create the type of Double[][] in runtime then return the ref to it's ctor?......
Please advice
thanks