0
votes
3answers
73 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)
{
…
1
vote
5answers
91 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
162 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
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 …
1
vote
2answers
43 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 …
2
votes
3answers
168 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
254 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> …
0
votes
6answers
154 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 …
0
votes
3answers
124 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 …
1
vote
4answers
201 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
354 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 …
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 …
1
vote
3answers
225 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?
10
votes
6answers
2k views
Generating a Random Decimal in C#
How can I get a random System.Decimal? System.Random doesn't support it directly.
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 …
