Get 'n' random string from a Arraylist of string. Where n= number of string I want from the list it can be 1,2,3....? Suppose that I have Array list of N Strings if I want to choose Random four strings without repetition. How can I do it? The code should be in C#. Though I have done this, but What is the best way?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by casperOne♦ Mar 28 '12 at 18:00
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Try this:
To keep each chosen string unique (prevent duplicates) I remove it from the source list as it is used. You should also do a |
|||
|
|
|
Shuffling @ Coding Horror |
|||
|
|