Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing a program for myself and i need to do a random between specific numbers. not a random in the field between 2 numbers, A random between few specific numbers. I want to do it with 15 different numbers but if someone could give me an example with just a few that would be wonderful!

share|improve this question
4  
Give us an example of what you're trying to do. As currently written, your question is too vague to be answerable. – Robert Harvey Dec 31 '12 at 16:47
"i need to do a random between specific numbers. not a random in the field between 2 numbers" And what's the difference between the two? – Servy Dec 31 '12 at 16:48

closed as not a real question by Oded, Woot4Moo, Soner Gönül, Servy, Andrew Whitaker Dec 31 '12 at 17:05

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.

4 Answers

Store your numbers in an array, and choose a random index:

var nums = new int[] { 1, 5, 7, 14, 17 };
var rand = new Random();
var randIndex = rand.Next(nums.Length);
var theRandomSelection = nums[randIndex];

// do something with theRandomSelection
share|improve this answer

Just fill an array with your numbers and then pick the index randomly. Pseudocode:

int numbers = new List<int>(){1, 2, 4, 7, 8};

Random r = new Random();

int index = r.Next(numbers.Count);

int randomNumber = numbers[index];
share|improve this answer

Hard to understand what is being asked for, but it sounds like this:

int[] values = new int[] {1,3,5,7};  
Random r = new Random();
int rInt = r.Next(0, values.Count);  
int selected = values[rint];
share|improve this answer

Make a List of your 15 specific numbers. Get a random number between 1 and 15. Get the item in the list at the position specified by your random number.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.