How to call Mono for Android class from within Android application?
问题 I have created a fairly simple Activity in Mono for Android project: [Activity(Label = "AndroidApplication1", MainLauncher = true, Icon = "@drawable/icon")] public class Activity1 : Activity { private string value = "intitial"; [Export] public string GetString() { return value; } [Export] public void SetString(string newValue) { value = newValue; } } The activity should only serve as a proof-of-concept, hence its simplicity. Now, I'd like to be able to call the method GetString() from the