What happens is that I have more than one Spinner
in my project, three to be specific, and I want to compare it so that when they have the same values I get a normal message saying that I select different values
sp = FindViewById<Spinner>(Resource.Id.sp);
sp2 = FindViewById<Spinner>(Resource.Id.sp2);
sp3= FindViewById<Spinner>(Resource.Id.sp3);
Button cargarSpinner = FindViewById<Button>(Resource.Id.button1);
cargarRecetas.Click += cargarRecetas_Click;