I use this to compare 2 value's and then show a Alert .
int ValueTo = Convert.ToInt32(Like.Text); int ValueFrom = Convert.ToInt32("1"); if (ValueTo > ValueFrom) { await DisplayAlert("Alert", "You have been alerted", "OK"); }
But how do i make a Sum of these value's to ?
Add a + is not the way
Answers
This is working or is this wrong to use
This is not a Xamarin.Forms question, nor even a Xamarin question. This forum is intended for Xamarin-related questions & discussions. Please post general C# questions to StackOverflow or elsewhere.
Thanks JohnHardman,
Going to look at StackOverflow