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.
6
votes
4answers
562 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
7answers
194 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?
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 …
3
votes
5answers
270 views
Generate User Friendly Codes
I am researching methods to generate a random human friendly code but not (easily) guessable. This will be used to give away prizes (think unique discount codes). We are to generate about 50k. Are …
3
votes
2answers
890 views
Pros and cons of RNGCryptoServiceProvider
What are the pros and cons of using System.Security.Cryptography.RNGCryptoServiceProvider vs System.Random are. I know that RNGCryptoServiceProvider is 'more random', i.e. less predictable for …
3
votes
3answers
647 views
How random is System.Random in .net 3 ?
I am currently writing a simple password generator (C#). For that I need some random Numbers.
Is it OK to simply use the Random Class that ships with .NET or are there any known problems with that?
2
votes
6answers
237 views
Random number clashes with same .Net code in different processes
Before I start, I want to point out that I'm pretty sure this actually happened. All my logs suggest that it did.
I'd like to know whether I'm wrong and this is impossible, whether it's just …
2
votes
3answers
73 views
Dictionary(words such as names, items, etc) library for .NET?
I am looking for a library that can be used in .NET to retrieve strings of random names(John, Peter), items(table, bottle), objects etc
I want to use this in a database-filling operation and the …
1
vote
3answers
65 views
.NET: Random number or number of free bytes in memory?
How can I get the number of free bytes available in memory, in .NET?
Also, can you think of a potentially better random number beside new Random().Next(), DateTime.Now.Ticks, or available system …
1
vote
6answers
479 views
select random file from directory
Any suggestions on how to improve this method? I am currently using it to select a single wallpaper from a directory of wallpapers
I know your not supposed to use arraylist anymore but i couldnt …
1
vote
6answers
346 views
select random file from directory
I've seen a few examples but none so far in C#, what is the best way to select a random file under a directory?
In this particular case I want to select a wallpaper from "C:\wallpapers" every 15 or …
1
vote
3answers
144 views
What is the best way to efficiently extract a small random subset of a large enumeration?
What is the best way to grab n items from an IEnumerable<T> in random order?
I'm writing a store API and need to provide a small set of random items from a sometimes huge enumeration of items. …
1
vote
3answers
131 views
How to test for sometimes fails?
I'm trying to write a unit test for a module that will give me a random list of numbers given certain criteria.
The particular test I'm writing is a reshuffle of the original sequence. I'm testing …
1
vote
7answers
1k views
How Random is System.Guid.NewGuid()?
I know this may sounds like a pointless question, but hear me out...
I basically want to know if I can trust the GUID to generate a value which will be unique 100% of the time and impossible to …
