Decompiled method of Xamarin.iOS application is empty -


i tryed decompile ios application developed xamarin.ios(xamarin.forms), ilspy , net reflector couldn't decompile methods correctly. decompiled method body prefectly empty.

what can problem?

the thing find in xamarin dll inside app bundle metadata required runtime. methods logic won't there because has been aot'ed , logic lives inside native binary itself. because ios not allow dynamic code generation.

you can read more info how xamarin works here

hope helps.


Comments