I have a list that gets its data from a form (where you can fill in the name and the amount), now when i want to send only one variable it works.
I want to do the following:
//Activity 1
    var second = new Intent(this, typeof(Activity2)); 
    second.PutExtra("name", name);
    second.PutExtra("amount", amount);
    StartActivity(second);
//Activity 2
    string name = Intent.GetStringExtra("name") ?? "No Data";
    string amount= Intent.GetStringExtra("amount") ?? "No Data";
but when i get the data on the other activity, amount and name have the same value
 
    