Tagged Questions

0
votes
3answers
72 views

How to generate random values that don’t keep giving me the same value in ‘runs’ of numbers?

Hi I coded this OneAtRandom() extension method: public static class GenericIListExtensions { public static T OneAtRandom<T>(this IList<T> list) { …
0
votes
3answers
69 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
67 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
175 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 …
1
vote
6answers
492 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 …
0
votes
2answers
142 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
240 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 …
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
4answers
179 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 …
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
362 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
145 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
5answers
273 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 …
2
votes
3answers
74 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
134 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 2 next
15 30 50 per page