You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and get error: Error: access violation accessing 0x20 around the line of EnumerableTake definition.
I see this lines of code from decompiling a function of the libil2cpp.so: v42 = System_Linq_Enumerable__Take_int_(v41, 3, (const MethodInfo_176CFD4 *)Method_System_Linq_Enumerable_Take_int___);
So seems to me the problem is that this function is generic with primitive int argument (Enumerable__Take_int_) and not Int32 class.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi
I want to trace "Take" method of System.Linq.Enumerable class (System.Core assembly).
It's definition is:
(IEnumerable is interface in System.Collections.Generic namespace of mscorlib assembly)
I tried to trace this Function with this code:
and get error:
Error: access violation accessing 0x20
around the line ofEnumerableTake
definition.I see this lines of code from decompiling a function of the libil2cpp.so:
v42 = System_Linq_Enumerable__Take_int_(v41, 3, (const MethodInfo_176CFD4 *)Method_System_Linq_Enumerable_Take_int___);
So seems to me the problem is that this function is generic with primitive int argument (
Enumerable__Take_int_
) and not Int32 class.How can i trace this method?
Beta Was this translation helpful? Give feedback.
All reactions