How to assign contents of List<String> to a RichTextBox?

19,361

Solution 1

Most classes in the BCL have a ToString() method.

When it comes to a List Of strSessionIdLines the ToString() tells you what type of object it is.

If you are casting for example an int to a string the int.ToString() will return its value, but if you do it on a array of integers int[].ToString it's ToString() method wont return eg a comma/linefeed separated string of values. As it appeared you expected.

This is why assigning the .ToArray to the .Lines property of the RichTextBox or a loop (or aggregate) to concatenate the List Of String into one string to suit the .Text property of the RichTextBox works.

One more tip I live by is when I need to call a method, eg String.Format I hover my mouse so that I can see what the method expects - expectsbeing the keyword. Then say the method wants a argument in the parameter thats of Type X, I declare type X and pass it in. Methods often have overloads, meaning that they can work with different parameters, so pressing up/down to scroll through them is also helpful in working out what is the most convenient in your situation. When you are passing in arguments to a method (in its parameter) type comma to refresh the tooltip indicating each arguments datatype.

Solution 2

This works for me:

myRichTextBox.Lines = myList.ToArray();

Solution 3

Try This:

List<String> list = new List<String>();
list.Add("1");
list.Add("2");
richTextBox1.Lines = list.ToArray();

Solution 4

Using linq Aggregate which applies an accumulator function over a sequence.

richTextBoxResults.Text = listStrSessionIdLines.Aggregate((i, j) => i + j);
Share:
19,361
B. Clay Shannon-B. Crow Raven
Author by

B. Clay Shannon-B. Crow Raven

My novel about climate change and social justice featuring talking animals traveling through time and space to prevent disasters is now available on amazon, in three formats: Taterskin &amp; The Eco Defenders Kindle eBook; Taterskin &amp; The Eco Defenders Paperback; Taterskin &amp; The Eco Defenders Hardcover Taterskin &amp; The Eco Defenders, told in “first canine” by the titular character, a Labrador Retriever, is the story of a few humans and several talking animals who travel through time and space to make the past—and thus the future—a better place. The improvements effected by the Eco Defenders benefit not just the earth itself, but also mistreated humans and animals. In Book 1 (“Wonders Never Cease”), The Eco Defenders travel 150 million years into the past, to meet a Pterodactyl and make plans to “nip Nazism in the bud.” After that, it's on to 1787 Australia to protect the indigenous people and the environment there. The Eco Defenders next go to India, where they assemble animals from all over that country to put an end to Thuggee and fights to the death between Cobras and Mongooses. Their final stop is 1885 Africa, where the Eco Defenders band together with the local animals to prevent King Leopold of Belgium from taking control of the Congo, following which they put an end to the poaching of animals throughout the continent. Book 2 (“Tell it to Future Generations”) takes up with the Eco Defenders following up on their earlier adventures by 1) Preventing the American Civil War in 1861, after which a slave they free joins them; 2) Saving the Indians from being massacred at Wounded Knee in 1890, following which Chapawee, a Sioux Indian, joins the Eco Defenders; 3) Putting an end to the practice of vivisection (experimentation on live animals) in 1903; 4) Coming to the aid of exploited workers in 1911 Manhattan, saving hundreds from the Triangle Shirtwaist Fire; and 5) Traveling to the Amazon Basin in 1978 to protect and preserve the Amazon rainforest. @@@@@@@@@@@@@@@@@@@@@@@ I have lived in eight states; besides my native California (where I was born and where I now again reside), in chronological order I have infested: New York (Brooklyn), Montana (Helena), Alaska (Anchorage), Oklahoma (Bethany), Wisconsin (New Berlin and Oconomowoc), Idaho (Coeur d'Alene), and Missouri (Piedmont). I am a writer of both fiction (for which I use the nom de guerre "Blackbird Crow Raven", as a nod to my Native American heritage - I am "½ Cowboy, ½ Indian") and nonfiction, including a two-volume social and cultural history of the U.S. which covers important events from 1620-2006 and can be downloaded gratis here.

Updated on June 04, 2022

Comments

  • B. Clay Shannon-B. Crow Raven
    B. Clay Shannon-B. Crow Raven almost 2 years

    I've tried this:

    richTextBoxResults.Text = listStrSessionIdLines.ToString();
    

    ...but get the List's ToString() representation (I guess that's what it is: "System.Collections.Generic.List`1[System.String]").

    ...and I've tried to try this:

    listStrSessionIdLines.CopyTo(richTextBoxResults.Lines);
    

    ...but I get, "Argument Exception was unhandled. Destination array was not long enough. Check destIndex and length, and the array's lower bounds."

    Does this mean I have to assign the RichTextBox a number of lines first, or...???