Perfare / Il2CppDumper

Unity il2cpp reverse engineer
MIT License
6.98k stars 1.37k forks source link

exporting interfaces #15

Closed niicojs closed 7 years ago

niicojs commented 7 years ago

Did you had a look at exporting interfaces? I tried to dump interface and types implementing interfaces but with no luck so far

Perfare commented 7 years ago

You mean like this part below?

public sealed class Int32 : ValueType, IFormattable, IConvertible, IComparable, IComparable`1<int>, IEquatable`1<int> // TypeDefIndex: 5
niicojs commented 7 years ago

Yes. You mean you do it already?

Sent from Outlookhttps://aka.ms/qtex0l


From: Perfare notifications@github.com Sent: Wednesday, August 16, 2017 1:57:47 PM To: Perfare/Il2CppDumper Cc: nico; Author Subject: Re: [Perfare/Il2CppDumper] exporting interfaces (#15)

You mean like this part below?

public sealed class Int32 : ValueType, IFormattable, IConvertible, IComparable, IComparable1<int>, IEquatable1 // TypeDefIndex: 5

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/Perfare/Il2CppDumper/issues/15#issuecomment-322747923, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AFZCOoC4hHIkH5F3Bi9-oAsH9Cz6MR10ks5sYtk6gaJpZM4OzLmW.

Perfare commented 7 years ago

I think it should be all right 44e3a26c6ed00075e5a0ce621d60112a27c678e0

niicojs commented 7 years ago

Nice, I'll have a look!

niicojs commented 7 years ago

Thanks, it works fine. I don't know how I came up with that but my code was way more complicated, and obviously didn't work...