I have an array list called str, i want to see the elements inside that array list, how should I use a messagebox to display that?
p.s. displaying the first field of the element is also fine
example code(a method I created to retrieve data from api:
void downloader_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
        {
            if (e.Error == null)
            {
                Stream responseStream = e.Result;
                StreamReader responseReader = new StreamReader(responseStream);
                string response = responseReader.ReadToEnd();
                string[] split1 = Regex.Split(response, "},{");
                List<string> pri1 = new List<string>(split1);
                pri1.RemoveAt(0);
                string last = pri1[pri1.Count() - 1];
                pri1.Remove(last);
                str = pri1;
            }
        }
 
     
     
     
    