Noob question... I\'m trying to display a List in a textbox... unfortunately, my code only displays the first element in the list...
private void Form1_L
Try this:
public string displayMembers(List vegetables) { var text = string.Empty; foreach (String s in vegetables) { text += s.ToString() + "\r\n"; } return text; }