Skip to content Skip to sidebar Skip to footer

How To Execute C# Code At Runtime In Xamarin Android?

I have a android application in Xamarin Studio. I want to execute a code placed in the text (string). For example this question help me in Visual Studio Windows application. But I

Solution 1:

It's complicated http://developer.xamarin.com/guides/android/advanced_topics/limitations/

Since applications on Android require generating Java proxy types during the build process, it is not possible to generate all code at runtime.

From the Limited Dynamic Language Support and Limited Java Generation Support you can learn more about what specifically isn't supported. This means you might be able to work out certain code, but it won't work for any valid c# code.

Post a Comment for "How To Execute C# Code At Runtime In Xamarin Android?"