I have 2 variable in the main activity. i need to pass these variable values to the next activity.how can i do it?
   button.Click += delegate {
   var activity2 = new Intent (this, typeof(Activity2));
   activity2.PutExtra ("MyData", "Data from Activity1");
   StartActivity (activity2);
};
 
     
     
     
    