Hi, Just starting my first Android app using Xamarin/C#. I have a button (defined in Main.axml) called GoBtn and I want to call a method from the buttons click handler. The code builds/runs but I can seem to step into the method GetSelected().
Here's the code:
GoBtn.Click += delegate {GetSelected();};
private void GetSelected()
Any ideas?
Thanks