Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
173 views

Performance concern: StringCollection vs List<String>

I was wondering when I should use List< string > and when I should use StringCollection. Let's say that I have to deal with large number of strings (like text files of 10mb). I know that ...
1
vote
1answer
117 views

C# Up Down Arrow for Next/Previous in a string list/collection

I am a bit confused here: Windows Forms Application, in C#. Let's say I have a text box. And when the user enters text into that text box, and submits that to the server, it populates what the ...
1
vote
1answer
153 views

WPF binding textbox to item of a string collection

I have a StringCollection in my settings and want to bind 1 of the items to a label. This is how it works. xmlns:p="clr-namespace:MyNamespace.Properties" <Label Content="{Binding ...
1
vote
1answer
688 views

Copying ComboBox Items to a StringCollection in C#

How can I copy a collection of items in a comboBox to a StringCollection in my C# application? I'm only interested in capturing the string text for each item in their respective order. I am trying ...
0
votes
6answers
110 views

How to generate a unique string from a string collection?

I need a way to convert a strings collection into a unique string. This means that I need to have a different string if any of the strings inside the collection has changed. I'm working on a big ...
0
votes
2answers
663 views

String.ToCharArray() stored in StringCollection conversion to numbers and back in VB.net

I have a string which was converted to a char array and stored in a stringcollection, how do I return the numerical value for the character in each string? How can I reverse this process, getting the ...
0
votes
2answers
683 views

Why is calling StringCollection from Settings slow?

I am writing a small .NET Windows Forms app, and I use the built-in Visual Studio settings to manage my programs config. I noticed an issue however that after I had added a StringCollection setting ...