Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

add items to listbox from text file c#

ListBox lb = new ListBox();
            System.IO.StreamReader sr = new System.IO.StreamReader("userTypes.txt");

            while (!sr.EndOfStream)
            {
                lb.Items.Add(sr.ReadLine());
            }
            sr.Close();
 
PREVIOUS NEXT
Tagged: #add #items #listbox #text #file
ADD COMMENT
Topic
Name
7+2 =