1
vote
5answers
79 views
Returning items randomly from a collection
I've a method which returns a generic list collection(List) from the database. This collection has got order details i.e., Order Id, order name, product details etc.
Also, method the method returns a …
2
votes
6answers
149 views
Linq2sql: efficient way to get random elements with weight?
Byt lets say I have an integer weight where i.e. elements with weight 10 has 10 times higher probability to be selected than element with weight 1.
var ws = db.WorkTypes
.Where(e => e.HumanId != …
1
vote
3answers
66 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 …
2
votes
3answers
158 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 baseobject of the orm is …
4
votes
7answers
246 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> …
1
vote
2answers
40 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 I can access this …
0
votes
3answers
110 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 works when stepping …
0
votes
6answers
147 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 thought about doing …
1
vote
4answers
196 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";
}
else
{
…
1
vote
5answers
340 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 GetRandomRectangle function was …
8
votes
8answers
313 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 additional constraint …
1
vote
2answers
85 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 pseudo code:
public …
6
votes
6answers
419 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 if we use a for:
…
1
vote
3answers
321 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 -+ infinity. I guess the …
1
vote
3answers
213 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?
