13
votes
4answers
2k views
Random number generator not working the way I had planned (C#)
This is a very strange problem.
Here is my code:
//Function to get random number
public static int RandomNumber(int min, int max)
{
Random random = new Random();
return …
12
votes
16answers
2k views
Generate a series of random numbers that add up to N in c#
How do I generate 30 random numbers between 1-9, that all add up to 200 (or some arbitrary N), in C#?
I'm trying to generate a string of digits that can add together to be N.
11
votes
13answers
4k views
Best way to randomize a string array in C#
I was just wondering what is the best way to randomize an array of strings in C#. My array contains about 500 strings and I'd like to create a new Array with the same strings but in a random order.
…
10
votes
6answers
2k views
Generating a Random Decimal in C#
How can I get a random System.Decimal? System.Random doesn't support it directly.
8
votes
8answers
322 views
How can I generate pseudo-random “readable” strings in Java?
Generating a truly random string of a given length is a fairly straightforward (and already-well-covered) task.
However; I'd like to generate a "pseudo" random string with the additional constraint …
6
votes
6answers
422 views
special random number
I'd like to have a random number like this:(in C#)
Random r = new Random();
r.next (0,10)
BUT it's important to the random number be more near 8,(or it be usually big),
I mean if we use a for:
…
6
votes
4answers
576 views
Random Gaussian Variables
Hi there,
does someone of you know if there is a class in the standard library of .net, that gives me the functionality to create random variables that follow a gaussian distribution?
Greets
…
5
votes
8answers
2k views
Generate random values in C#
How can I generate random Int64 and UInt64 values using the Random class in C#?
5
votes
7answers
196 views
What is the best way of randomly re-arranging a list of items in c# ?
I have a list of objects and I want to reorder them randomly on each request. What is the best way of doing this?
5
votes
7answers
2k views
Most efficient way to randomly “sort” (Shuffle) a list of integers in C#
I need to randomly 'sort' a list of integers (0-1999) in the most efficient way possible. Any ideas?
Currently, I am doing something like this:
bool[] bIndexSet = new bool[iItemCount];
for (int …
5
votes
5answers
2k views
Random date in C#
I'm looking for some succinct C# 3 code to generate a random date between Jan 1 1995 and the current date.
I'm thinking some solution that utilizes Enumerable.Range somehow may make this more …
4
votes
7answers
253 views
How could I improve this C# randomising method?
I think I've settled on this as the most simple and unit-testable method for randomising a list, but would be interested to hear of any improvements.
public static IList<T> …
4
votes
4answers
866 views
Random weighted choice
Consider the class below that represents a Broker:
public class Broker
{
public string Name = string.Empty;
public int Weight = 0;
public Broker(string n, int w)
{
this.Name …
3
votes
3answers
455 views
Random Number Between 2 Double Numbers
It is possible to generate a random number between 2 doubles?
Example:
public double GetRandomeNumber(double minimum, double maximum)
{
return Random.NextDouble(minimum, maximum)
}
Then I …
3
votes
5answers
339 views
why does this method return the same random string each time?
I need to create a block of unique lines to test a different project im working on.
so i created a simple program to generate a random string of X length.
The issue is that if i call it once i get a …
