0
votes
4answers
57 views

.net Switch statement and random number: Not all code paths return a value. Must I include a default?

Heres a tiny function to randomly return either +1 or -1 public static int PlusOrMinus() { int chance = MyRandom.Random.Next(0, 2); switch (chance) { case 0: return ...
-1
votes
8answers
113 views

How to check if 5 random numbers are the same [closed]

I can't figure out how to test if 5 randomly generated numbers are the same. All i have so far is the creation of them. dice1 = rand.Next(1,7); dice2 = rand.Next(1,7); dice3 = rand.Next(1,7); ...
0
votes
1answer
47 views

Influenced randomization

I'm really sorry, I would search my question but I don't know how to word it correctly, I have a big problem with mental math and I've been trying to think of a solution. I'm trying to build a program ...
-2
votes
1answer
91 views

A Simple Method To Create Island Map Mask [closed]

NOTE for those who are downvoting and don't even try to answer this question because they don't know enything about game development -> the same question on gamedev.stackexchange has become a ...
0
votes
1answer
77 views

Multidimensional array is repeating vectors

I have the following code that takes random values from one list and puts them in an multi-dimensional array, which I use it to create a PDF: protected void ConstruirExamenesAndGenerarPdf(int[] ...
-3
votes
1answer
40 views

Random function returns the same number repeatedly [duplicate]

I have a really weird problem in vb.net, for some reason system.random() is not being random at all in any of my functions: Public Function RandomNumber(ByVal MaxNumber As Integer, Optional ByVal ...
1
vote
1answer
33 views

Implementing .ThenRandomly

I have implemented .OrderRandomly (and it returns an IOrderedEnumerable whose .CreateOrderedEnumerable returns the object unchanged because it has already been sorted completely -- perhaps it should ...
3
votes
5answers
319 views

How to weight a random number based on an array

I've been thinking about how to implement something that, frankly, is beyond my mathematical skills. So here goes, feel free to try and point me in the right direction rather than complete code ...
1
vote
3answers
74 views

Design goals / preferences in .NET's Random class [closed]

I've used .NET's Random class in a few projects, but one thing I often wonder is why it was designed as an instance object, rather than having static methods which return random values. For example: ...
4
votes
5answers
494 views

Generating random, unique values C#

I've searched for a while and been struggling to find this, I'm trying to generate several random, unique numbers is C#. I'm using System.Random, and I'm using a datetime.now.ticks seed: public ...
0
votes
1answer
204 views

Using mouse movement and keystrokes to generate entropy for encryption (As seen on MEGA)

I am interested in generating entropy from mouse movements and keystrokes in .NET (for the purposes of encryption this could be either in a Forms application where the mouse movement and keystroke ...
3
votes
3answers
137 views

Check quality of random numbers

I wrote a code which generates random numbers based on a private cryptography project ( for educational purposes ). Now i want to check how the quality of my random number generator is. Tests i ...
1
vote
1answer
104 views

What types of attacks are possible against this password generation scheme?

The code that follows uses the PRNG (pseudo random number generator) Random class to generate password characters for the initial temporary password instead of the much more cryptographically secure ...
12
votes
3answers
106 views

Create different seeds for different instances of “Random”

People usually ask why they get always the same numbers when they use Random. In their case, they unintenionally create a new instance of Random each time (instead of using only one instance), which ...
0
votes
2answers
59 views

Creating a new random list from a source list

I am using VB.net 2012 and am wanting to do the following in code: I have a list of media items that is of length x. Each item in the list has a duration of y. I am wanting to create a new random ...
0
votes
1answer
229 views

generating random number with RNGCRYPTOSERVICEPROVIDER within specified range

I have come with the following coding to generate range within 1000-9999: Dim byt As Byte() = New Byte(1000) {} Dim rngCrypto As New RNGCryptoServiceProvider() rngCrypto.GetBytes(byt) Dim ...
1
vote
2answers
149 views

Parallel Random Number Generators

I would like to know whether there is any random number generator which can generate random numbers in parallel such that the generated sequences should not have dependency in between them. To be ...
1
vote
1answer
72 views

Random not so random - depend on previous call so it seems [duplicate]

Possible Duplicate: Random number generator only generating one random number In vb.net I am using this function to get random numbers: Private Function GetRandom(ByVal Min As Integer, ...
16
votes
1answer
321 views

Two different seeds producing the same 'random' sequence

Maybe there is a very logic explanation for this, but I just can't seem to understand why the seeds 0 and 2,147,483,647 produce the same "random" sequence, using .NET's Random Class (System). Quick ...
3
votes
4answers
107 views

System.Random default constructor system clock resolution?

I have several processes in which I use System.Random's default constructor to generate random numbers. I read about it on MSDN but it dosn't say the specific system clock resolution it uses, for ...
-1
votes
3answers
596 views

How to seed GUID generation?

What would be the easiest way to code a function in .NET to generate a GUID based on a seed so that I can have greater confidence about its uniqueness? string GenerateSeededGuid(int seed) { // code ...
3
votes
2answers
415 views

.NET Random RGB Color

I wrote this C# code snippet here. The idea is to generate a random .NET Color in RGB, while keeping alpha at 255 (i.e. full) My question is does this function have the potential to hit every colour ...
2
votes
2answers
185 views

What could be the use of (Random.NextDouble() < 1)

I've seen in several applications I'm supporting the following sentence: Random rnd = new Random(); if (rnd.NextDouble() < 1) { ' Do stuff } What could be the purpose of this? rnd is going ...
0
votes
0answers
80 views

String, random, interesting behavior [duplicate]

Possible Duplicate: why does this method return the same random string each time? Random not that random I have weird behavior in this code. public void InitPopulation() { for (int i ...
1
vote
1answer
124 views

Consistent, Cross Platform (java .Net) PseudoRandom generator if seeded the same

Is there a standard, cross platform number generator/algorithm/library that if seeded with the same input (in my case a hash of some sort), always produces the same set of pseudo-random numbers? ...
4
votes
4answers
239 views

does every machine generate same result of random number by using the same seed? (c#)

I'm current stuck in the random generator. the requirement specification shows a sample like this: Random rand = new Random(3412); the rand result is not directly given out, but used for other ...
2
votes
2answers
100 views

Why random method in for statement return the same result? [duplicate]

Possible Duplicate: Random number generator not working the way I had planned (C#) I have a method which return 9 digit string number , if I call this method it works properly as I expected ...
1
vote
5answers
189 views

if you compressed file containing random numbers it get bigger

var file = new FileStream("random.txt", FileMode.Create); var random = new Random(); for (int i = 0; i < 100000000; i++) { var bytesToWrite = ...
-4
votes
2answers
146 views

C# Randomly distributing strings without repetiotion [closed]

Hi guys i need some help here i want to distribute 6 strings randomly in 6 buttons as text without any repetition. That is i Want to do some kind of shuffling and distribute it but there will no ...
1
vote
5answers
343 views

C# Random does not work like a random

I have a graph, each node have 4 child nodes. I wrote a algorithm to generate a random path from a begin node to an end node. At each node, it chooses a random next node. Visited node can be ...
0
votes
1answer
40 views

Newbie needs help on random record [duplicate]

Possible Duplicate: Random row from Linq to Sql I'm a total newbie when it comes to .NET. I have this line of code, that pulls the record from the DB containing a specified system name. I ...
0
votes
3answers
125 views

How do you create an enumeration of random values?

How can I get an IEnumerable of random values? I'm disappointed the class Random doesn't implement IEnumerable<int>.
5
votes
7answers
240 views

Emulate Python's random.choice in .NET

Python's module 'random' has a function random.choice random.choice(seq) Return a random element from the non-empty sequence seq. If seq is empty, raises IndexError. How can I emulate this in ...
0
votes
2answers
115 views

How can I get this random complex job done ? C#

I have to do a software, and it's really complex, I mean, really don't know how to get it done. There are lot of details, but I will write here a simple example of what I need. The user inputs a ...
1
vote
1answer
179 views

How can I generate a standard normal random variable in F# (or .Net in general)?

I need standard normal (Gaussian) random variables for my simulation. What is the easiest way to generate them? Unlike in java, the standard Random class seems to cater for only uniform variables.
2
votes
2answers
266 views

Why is Random() implemented this way in .Net?

I recently answered a question on here, which was edited by member @dtb. filling a array with uniqe random numbers between 0-9 in c# The question involved the use of Random() - and said member had ...
0
votes
1answer
122 views

Why does `Random` not contain a static `Next` method by default? [duplicate]

Possible Duplicate: class System.Random .. why not static? Following on from "Generated random numbers are always equal", I was wondering; Why doesn't the Random class expose a static ...
5
votes
3answers
304 views

How do I demonstrate that .NET class Random is not suitable for generating passwords?

Very often I see .NET class Random being used for passwords generation. On one hand, this question I asked earlier shows that generating a bunch of "secret" data using class Random yields rather ...
3
votes
3answers
295 views

Thread-safe normal random number generator in F#

Needing a random number generator that returns a sample from a normal (Gaussian) distribution, I've ported to F# a portion of John D. Cook's C# generator: let mutable m_w = 521288629u let mutable ...
22
votes
1answer
784 views

Why is System.Random giving '1' a lot of times in a row, then not for a while, then again?

Not sure how else to explain this, so the title pretty much describes the problem. Random is not being re-initialised every part of the loop. It's a static member of a class which I always call on ...
4
votes
1answer
91 views

What is class Random seeded with when no seed is provided?

Class Random can be instantiated using a constructor without parameters and MSDN says that in this case it is seeded with some time-dependent value. Is the way to derive that time-dependent value ...
0
votes
2answers
91 views

Is there any drawback in using a combination of RandomNumberGenerator class and base 64 encoding for generating passwords?

In my web service I need to generate passwords that are strong and can be represented as a string. Currently I use System.Security.Cryptography.RandomNumberGenerator and generate a large enough (let's ...
6
votes
8answers
545 views

How to generate a random number with 8 digits total in C#? (4 integer, 4 fractional part)

Something like these: 1234.5678 2345.6789 3456.7890 But not: 123.4567 Right now I do this: double number = Math.Ceiling ( random.NextDouble ( ) * 10000000 ) * 0.001; but that doesn't always ...
-2
votes
2answers
109 views

The same rows in LinkedList<LinkedList> [duplicate]

Possible Duplicate: Random number generator not working the way I had planned (C#) I have LinkedList of LinkedList, and when I try to dispaly after filling, the raws are the same, but the ...
1
vote
1answer
96 views

How to get good quality normalized signed random floats using System.Random?

The default Random.NextDouble returns values between 0.0 and 1.0 and I need values between -1.0 and 1.0. What's the best way to do this that will yield as good values as System.Random.
16
votes
5answers
900 views

Implementation change to .NET's Random()

I am migrating a method that is used for decoding from .NET Framework 1.1 to .NET Framework 4. I noticed that implementation of Random changed. So given the same seed, Random.NextBytes returns ...
6
votes
3answers
409 views

Implementing a Random provider in .Net 3.5

Here is the culmination of a Skeet posting for a random provider: public static class RandomProvider { private static int seed = Environment.TickCount; private static ...
0
votes
4answers
122 views

Random plot algorithm

I have two dimensional array. I want to pick a slot at random, and continue to do so never picking the same slot twice until I have finally picked all slots (so nothing random about the last pick of ...
0
votes
1answer
244 views

Generating Random values and Summing them to zero in VB.NET

I have to generate a series of random numbers, say 100, within range of -1 and 1 and scale them by a value, say square root of 2. After which I take those 100 values and their sum = 0. Then scale that ...
1
vote
1answer
341 views

Random.Next() always giving the same result [duplicate]

Possible Duplicate: Random number generator not working the way I had planned (C#) I am experienced in basic C# programming and am currently making a Die roller. This application can roll ...

1 2 3