0
votes
3answers
64 views
Random Linq Query
Hi guys,
how I can get a random row from a selection in my linq query?
I tried:
Bot bot = (from a in dc.Bot
select a).OrderBy(x => Guid.NewGuid()).First();
But doesn't work, I ever …
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 …
0
votes
5answers
165 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 lets imagine I'm …
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.
0
votes
2answers
133 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 as many as I need?
…
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 …
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 …
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 …
1
vote
6answers
347 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 …
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 …
0
votes
4answers
174 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 running again.
What is …
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 …
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. …
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 …
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?
