I can not share data between 2 activity:
Activity1
homeButton.Click += delegate { var second = new Intent(this, typeof(SecondPage)); second.P
For a start, you should pass the intent you created:
homeButton.Click += delegate { var second = new Intent(this, typeof(SecondPage)); second.PutExtra("reg", "qwe"); StartActivity (second); }