1
vote
2answers
33 views
Select Random Datas From File
Hello,
I'm learning C# and now I need to build a home project(just to learn how to use file I/O and random). I have a file(names.txt) like this:
Nathan
John
Max
Someone
But how …
2
votes
3answers
108 views
C# Random Code Field Generator for Object
I have an object with the following properties
GID
ID
Code
Name
Some of the clients dont want to enter the Code so the intial plan was to put the ID in the code but the baseobjec …
4
votes
7answers
234 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> …
0
votes
3answers
87 views
Random background image on DIV
I'm trying to get a randomly picked background image (from a selection of 4 images) to appear as the background image for a asp.net panel.
The problem I have is that the code work …
0
votes
6answers
124 views
(.NET) Easy way to generate random, easy to remember passcodes
I have a project in the works, and I'll need to associate a passcode with an item.
The password should be completely non sequential or easily guessable, yet simple to remember.
I …
1
vote
4answers
178 views
Random number: 0 or 1
Am I looking too far to see something as simple as pick a number: 0 or 1?
Random rand = new Random();
if (rand.NextDouble() == 0)
{
lnkEvents.CssClass = "selected";
}
…
1
vote
5answers
289 views
Random number generation in C#
I have been writing some C# code for a training exercise, in which I had to create an array of random rectangles.
Problem being that the rectangle being produced by my GetRandomRe …
8
votes
8answers
279 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 add …
1
vote
2answers
83 views
Are there any tools to populate class properties with random data?
What I'd like to do is create a class with some attributes on different properties, pass that class to another that will set the properties with appropriate random data... here in …
1
vote
3answers
189 views
How to randomly select a string using C#?
When I click a button a string should appear as output ex. good morning or good afternoon. How can I use C# to randomly select the string to display?
1
vote
3answers
277 views
How to generate normally distributed random from an integer range?
Given the start and the end of an integer range, how do I calculate a normally distributed random integer between this range?
I realize that the normal distribution goes into -+ i …
6
votes
6answers
383 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 …
12
votes
16answers
1k 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.
1
vote
4answers
382 views
c# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulation
So far I've been using the C# Mersenne Twister found here:
http://www.centerspace.net/resources.php
I just discovered SFMT which is supposed to be twice as fast here:
http://www …
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.
