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
Why I'm getting always access violation error when trying to add values to generic list or what I'm doing wrong?
let list = Il2Cpp.corlib.class("System.Collections.Generic.List`1")
let int = Il2Cpp.corlib.class("System.Int32")
let listInt = list.inflate(int).new()
listInt.method(".ctor").invoke()
listInt.method("Add").invoke(1)
Getting always the same error, doesn't matter if I try method "Add", "Insert" or "set_Item"
Error: access violation accessing 0x3e8
at invokeRaw (il2cpp/structs/method.ts:233)
at (src/index.ts:1023)
at call (native)
at (il2cpp/structs/method.ts:354)
The text was updated successfully, but these errors were encountered:
etmltg69
changed the title
System.Collections.Generic.List`1 - access violation when trying to invoke "Add" method
System.Collections.Generic.List`1 - access violation when trying to invoke "Add", "Insert" or "set_Item" method
Feb 29, 2024
etmltg69
changed the title
System.Collections.Generic.List`1 - access violation when trying to invoke "Add", "Insert" or "set_Item" method
System.Collections.Generic.List`1 (List<int>) - access violation when trying to invoke "Add", "Insert" or "set_Item" method
Feb 29, 2024
Looks like these methods were stripped by linker. This can happens to any functions which are not used in the project.
vfsfitvnm
changed the title
System.Collections.Generic.List`1 (List<int>) - access violation when trying to invoke "Add", "Insert" or "set_Item" method
Access violation due to stripped methods
Aug 24, 2024
Why I'm getting always access violation error when trying to add values to generic list or what I'm doing wrong?
Getting always the same error, doesn't matter if I try method "Add", "Insert" or "set_Item"
Error: access violation accessing 0x3e8
at invokeRaw (il2cpp/structs/method.ts:233)
at (src/index.ts:1023)
at call (native)
at (il2cpp/structs/method.ts:354)
The text was updated successfully, but these errors were encountered: