document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Xamarin.Forms;
  8.  
  9. namespace HelloXamarin
  10. {
  11.     public partial class MainPage : ContentPage
  12.     {
  13.         int count = 0;
  14.  
  15.         public MainPage()
  16.         {
  17.             InitializeComponent();
  18.         }
  19.  
  20.         void Handle_ButtonClick(object sender, System.EventArgs e)
  21.         {
  22.             count++;
  23.             label.Text = $"You clicked {count} times.";
  24.         }
  25.     }
  26. }
');