0
votes
5answers
140 views
What’s the best practice for getting a random date-time between two date-times?
Hi folks,
I'm trying to randomize the value for a simple DateTime datafield.
I wish to get a random date/time between two date/times (e.g. min date/time and max date/time).
So l …
0
votes
2answers
107 views
Best way to get random selection from DataTable?
As the title says, what's the most efficient way to get a random selection of x DataRows from a DataTable.
Would it be to iteratively do something like the following until I have …
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.
2
votes
6answers
219 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, wheth …
1
vote
6answers
453 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 anymor …
3
votes
5answers
325 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 …
1
vote
6answers
312 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:\wallp …
3
votes
5answers
264 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 generat …
0
votes
4answers
159 views
How to run a script at random intervals
Hi
I want to write a batch job in c# that runs a task at a random(ish) interval e.g. every hour +/- 20 mins and if no update is needed, then to wait x2 the last time before runnin …
1
vote
3answers
136 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 en …
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 …
5
votes
7answers
193 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
2answers
791 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 pre …
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 op …
1
vote
3answers
129 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 sequ …
