There is a method in MainActivity.cs ... let's call it Test (). And there is a fragment. which describes a certain button
button = view.FindViewById<Button>(Resource.Id.button1); private void button_Click(object sender, EventArgs e) { //вызов метода Test() } How to implement a call to this method?
PS xamarin android