active questions tagged random-number-generator+c# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T05:36:02Z http://stackoverflow.com/feeds/tag/random-number-generator+c# http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1790776/fast-random-generator 2 Fast Random Generator tazzo 2009-11-24T15:24:31Z 2009-11-24T18:07:43Z <p>How can I make a fast RNG (Random Number Generator) in C# that support filling an array of bytes with a maxValue (and/or a minValue)? I have found this <a href="http://www.codeproject.com/KB/cs/fastrandom.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/fastrandom.aspx</a> but doesn't have these feature.</p> http://stackoverflow.com/questions/1785744/how-do-i-seed-a-random-class-to-avoid-getting-duplicate-random-values 2 how do i seed a random class to avoid getting duplicate random values oo 2009-11-23T20:31:58Z 2009-11-23T20:53:57Z <p>i have the following code inside a static method in a static class</p> <pre><code>Random r = new Random(); int randomNumber = r.Next(1,100); </code></pre> <p>i have this inside a loop and i keep getting the same randomNumber?</p> <p>any suggestions here?</p> http://stackoverflow.com/questions/1189008/intel-math-kernel-on-windows-calling-from-c-for-random-number-generation 4 Intel Math Kernel on windows, calling from c# for random number generation m3ntat 2009-07-27T15:58:39Z 2009-10-30T19:38:51Z <p>Has anyone used the <strong>Intel Math Kernel library</strong> <a href="http://software.intel.com/en-us/intel-mkl/" rel="nofollow">http://software.intel.com/en-us/intel-mkl/</a></p> <p>I am thinking of using this for <strong>Random Number generation from a C# application</strong> as we need extreme performance (1.6 trillion random numbers per day).</p> <p>Also any advice on minimising the overhead of <strong>consuming functions from this c++ code in my c#</strong> Monte Carlo simulation.</p> <ul> <li>Am about to download the Eval from the site and above and try and benchmark this from my c# app, any help much appreciated.</li> </ul> <p>Thanks</p> http://stackoverflow.com/questions/1626023/c-normal-random-number 3 C# Normal Random Number J.Hendrix 2009-10-26T17:12:10Z 2009-10-26T21:50:58Z <p>I would like to create a function that accepts <code>Double mean</code>, <code>Double deviation</code> and returns a random number with a normal distribution. </p> <p>Example: if I pass in 5.00 as the mean and 2.00 as the deviation, 68% of the time I will get a number between 3.00 and 7.00</p> <p>My statistics is a little weak…. Anyone have an idea how I should approach this? My implementation will be C# 2.0 but feel free to answer in your language of choice as long as the math functions are standard.</p> <p>I think <a href="http://stackoverflow.com/questions/1197321/need-help-generating-discrete-random-numbers-from-distribution/1197393#1197393">this</a> might actually be what I am looking for. Any help converting this to code?</p> <p>Thanks in advance for your help.</p> http://stackoverflow.com/questions/1619836/c-random-number 2 C# Random Number thecaptain0220 2009-10-25T02:46:12Z 2009-10-25T13:46:38Z <p>I am working on a project in which I need to generate 8 random numbers. I am having an issue with the random number part being very time consuming for some reason. What I mean by 8 random numbers is I need a string that is 8 characters long consisting of the numbers 0-9. Example 01234567 or 23716253 etc. </p> <p>I tried looping 8 times generating a random number with Random.Next(0, 9) and just turning them to a string and concatenating them to the final string. I also tried generating a random number using Random.Next(0, 99999999) and just converting the number to a string and padding it to 8 with 0's. </p> <p>It seems like both are pretty slow and I need to come up with a faster way. I dont mind making calls to other languages or somthing either if it will help performance.</p> <p>Here is some extra info to add. I dont think im going to find anything super efficient. I have to generate this number about 50000 times. When I ran a test with 47000 it took 8:39 seconds. This is only like .011 seconds each time but it was just slowing thins down because im also working with a has table. I also called hashtable.ContainsKey() all 47000 times and it only took a total of 58 seconds. It just is such a big difference. </p> <p>Here is the code I origanally used. Convert.ToString(rg.Next(0, 99999999)).PadLeft(8, '0');</p> <p>Here is some code to try to figure this out. Here are the times that I get Contains Value: 00:00:00.4287102 Contains Key: 00:01:12.2539062 Generate Key: 00:08:24.2832039 Add: 00:00:00</p> <pre><code> TimeSpan containsValue = new TimeSpan(); TimeSpan containsKey = new TimeSpan(); TimeSpan generateCode = new TimeSpan(); TimeSpan addCode = new TimeSpan(); StreamReader sr = new StreamReader(txtDictionaryFile.Text); string curWord = sr.ReadLine().ToUpper(); int i = 1; DateTime start; DateTime end; while (!sr.EndOfStream) { start = DateTime.Now; bool exists = mCodeBook.ContainsValue(curWord); end = DateTime.Now; containsValue += end - start; if (!exists) { string newCode; bool kExists; do { start = DateTime.Now; Random rnd = new Random(); StringBuilder builder = new StringBuilder(8); byte[] b = new byte[8]; rnd.NextBytes(b); for (int i = 0; i &lt; 8; i++) { builder.Append((char)((b[i] % 10) + 48)); } newCode = builder.ToString(); end = DateTime.Now; generateCode += end - start; start = DateTime.Now; kExists = mCodeBook.ContainsKey(newCode); end = DateTime.Now; containsKey += end - start; } while (kExists); start = DateTime.Now; mCodeBook.Add(newCode, curWord); end = DateTime.Now; addCode += start - end; } i++; curWord = sr.ReadLine().ToUpper(); } </code></pre> http://stackoverflow.com/questions/1257299/why-use-the-c-class-system-random-at-all-instead-of-system-security-cryptography 6 Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator? Lernkurve 2009-08-10T21:25:54Z 2009-10-25T09:09:53Z <p>Why would anybody use the "standard" random number generator from <a href="http://msdn.microsoft.com/en-us/library/system.random.aspx" rel="nofollow">System.Random</a> at all instead of always using the cryptographically secure random number generator from <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.randomnumbergenerator.aspx" rel="nofollow">System.Security.Cryptography.RandomNumberGenerator</a> (or its subclasses because RandomNumberGenerator is abstract)?</p> <p>Nate Lawson tells us in his Google Tech Talk presentation "<a href="http://www.youtube.com/watch?v=ySQl0NhW1J0" rel="nofollow">Crypto Strikes Back</a>" at minute 13:11 not to use the "standard" random number generators from Python, Java and C# and to instead use the cryptographically secure version.</p> <p>I know the difference between the two versions of random number generators (see <a href="http://stackoverflow.com/questions/101337/what-is-the-difference-between-a-randomly-generated-number-and-secure-randomly-ge">question 101337</a>).</p> <p>But what rationale is there to not always use the secure random number generator? Why use System.Random at all? Performance perhaps?</p> http://stackoverflow.com/questions/1607919/properly-seeding-random-numbers-in-class-library-called-from-asp-net-web-page 0 Properly Seeding Random numbers in Class Library called from ASP.Net Web Page jkelley 2009-10-22T15:11:49Z 2009-10-23T12:20:23Z <p>I'm experiencing a problem with my random number generator in a class library returning the same value repeatedly. It returns the same value b/c it is repeatedly initialized with the default constructor - for example: <br /></p> <pre><code>public static T GetRandomValue&lt;T&gt;(T[] array) { int ndx = new Random().Next(array.Length); return array[ndx]; } </code></pre> <p>This is called repeatedly from another method before the system clock can change, so it is initialized with the same random seed, giving the same value. (see <a href="http://stackoverflow.com/questions/932520/why-does-it-appear-that-my-random-number-generator-isnt-random-in-c">SO article for apparently malfunctioning random number generator</a>) It is used to select a random format string for some text generation algorithms. Because it is called in rapid sequence every time my different bits of text generates with a homogeneous formatting string, which is undesirable for the application. <br /> <br /> It is typically called from an asp.net webpage, and I'm wondering what the best approach is to produce a random sequence, without creating performance issues for the pages that call the method repeatedly.</p> <p>A web page calls the library method, which calls the random number. I am wondering if i can use this approach for a static number generator instead. Are there performance issues associated with calling a static method like this from a webpage?</p> <pre><code>public class Utility { public static Random random = new Random(); public static T GetRandomValue&lt;T&gt;(T[] array) { int ndx = random.Next(array.Length); return array[ndx]; } } </code></pre> <p>A lock on "random" and "ndx" may be needed too. Is there a better practice in general for handling this type of seeding in a class library?</p> http://stackoverflow.com/questions/1542911/obscure-vbmath-random-numbers-generator-behavior 0 Obscure VBMath random numbers generator behavior. kripto_ash 2009-10-09T10:00:25Z 2009-10-13T13:29:08Z <p>Hi, </p> <p>I want to repeat a random number sequence generated by a legacy software using the VBMath.Rnd and VBMath.Randomize functions in VB .NET</p> <p>Reading on the documentation for those functions on <a href="http://msdn.microsoft.com/en-us/library/ht1sfkd6.aspx" rel="nofollow">MSDN</a> i found that you are supposed to "reset" the generator calling Rnd with a negative value if you want the same seed to give you the same result sequence each time.</p> <p>But doing some tests... things didn't work as expected.</p> <p>The legacy software does something like this at the start of the application on different executions:</p> <pre><code>float[] rNums = new float[4]; VBMath.Randomize(154341.77394338892); for (int index = 0; index &lt; 4; index++) { rNums[index] = VBMath.Rnd(); } </code></pre> <p>And my code does something like this:</p> <pre><code>VBMath.Rnd(-1); VBMath.Randomize(154341.77394338892); for (int index = 0; index &lt; 4; index++) { Console.WriteLine("rNum[" + index + "] " + rNums[index] + " = " + VBMath.Rnd()); } </code></pre> <p>The results for this test are:</p> <pre><code>rNum[0] 0,6918146 = 0,2605162 rNum[1] 0,5121228 = 0,4748411 rNum[2] 0,8309224 = 0,8112976 rNum[3] 0,972851 = 0,8011347 </code></pre> <p>The sequence that i want to reproduce in the second code any number of times is the sequence generated from the hard coded initial state of the generator. That means the sequence you would get if you run the first code alone.</p> <p>I can not change the first code.</p> <p>Any idea on why the VBMath.Rnd and VBMath.Randomize functions arent working as expected?</p> <p>Did i miss something?</p> <p><hr /></p> <h2>ANSWER</h2> <p>Thee problem is that since the legacy code doesn't call Rnd with a negative value, the generator doesn't clear its state and the call to Rnd gets chained to the previous value of the seed (in this case, the hard-coded value). </p> <p>To solve the problem and be able to repeat the process all over again without all the problems that would imply "reproducing" the initial state, i cloned the generator code and patched it so i could reproduce the same situation every time depending on a parameter.</p> <p>I know.. its ugly.. but it solves my problem (Btw i also know that there are some rounding errors and that the generated values are not exact.. they differ in like the last digit or something) but i don't need exact precision. </p> <p>The rounding error probably comes from my choice of language for the cloning of the algorithm. If someone could help out on how to get the exact same result (match the rounding errors) that would be nice.</p> <p>The patched code follows.</p> <pre><code>public sealed class RndGenerator { static int m_rndSeed = 0x50000; // This is the value that the programmer sets the seed at ProjectData object // initialization const int CONSTANT_INIT_RNDSEED = 0x50000; // Methods private static float GetTimer() { DateTime now = DateTime.Now; return (float)(((((60 * now.Hour) + now.Minute) * 60) + now.Second) + (((double)now.Millisecond) / 1000.0)); } public static void Randomize() { float timer = GetTimer(); int rndSeed = m_rndSeed; int num = BitConverter.ToInt32(BitConverter.GetBytes(timer), 0); num = ((num &amp; 0xffff) ^ (num &gt;&gt; 0x10)) &lt;&lt; 8; rndSeed = (rndSeed &amp; -16776961) | num; m_rndSeed = rndSeed; } public static void Randomize(double Number) { Randomize(Number, false); } public static void Randomize(double Number, bool useHardCodedState) { int num; int rndSeed = 0; if (useHardCodedState) rndSeed = CONSTANT_INIT_RNDSEED; else rndSeed = m_rndSeed; if (BitConverter.IsLittleEndian) { num = BitConverter.ToInt32(BitConverter.GetBytes(Number), 4); } else { num = BitConverter.ToInt32(BitConverter.GetBytes(Number), 0); } num = ((num &amp; 0xffff) ^ (num &gt;&gt; 0x10)) &lt;&lt; 8; rndSeed = (rndSeed &amp; -16776961) | num; m_rndSeed = rndSeed; } public static float Rnd() { return Rnd(1f); } public static float Rnd(float Number) { int rndSeed = m_rndSeed; if (Number != 0.0) { if (Number &lt; 0.0) { long num3 = BitConverter.ToInt32(BitConverter.GetBytes(Number), 0); num3 &amp;= (long)0xffffffffL; rndSeed = (int)((num3 + (num3 &gt;&gt; 0x18)) &amp; 0xffffffL); } rndSeed = (int)(((rndSeed * 0x43fd43fdL) + 0xc39ec3L) &amp; 0xffffffL); } m_rndSeed = rndSeed; return (((float)rndSeed) / 1.677722E+07f); } } </code></pre> http://stackoverflow.com/questions/1270584/how-to-generate-a-random-named-text-file-in-c 2 How to generate a random named text file in C#? Lady Sour 2009-08-13T07:41:00Z 2009-08-13T08:15:29Z <p>I have to make a loop to generate a 5 randomly-picked-letter string, and then create a text file under that name, lets say in C:// , how will I do that? Both the generating name and creating a file in the directory. I think I have to pick 5 random numbers from the ascii codes add them to an array and then convert them to the character equivalents to be able to use it as a name. Idk how I'll convert them to character and make up a string with them, could you help me?</p> http://stackoverflow.com/questions/1166408/c-mersenne-twister-random-integer-generator-implementation-sfmt-monte-carlo-si 1 c# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulation m3ntat 2009-07-22T16:10:03Z 2009-07-23T14:15:39Z <p>So far I've been using the C# Mersenne Twister found here:</p> <p><a href="http://www.centerspace.net/resources.php" rel="nofollow">http://www.centerspace.net/resources.php</a></p> <p>I just discovered <strong>SFMT</strong> which is supposed to be twice as fast here:</p> <p><a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/" rel="nofollow">http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/</a></p> <p><strong>Can anyone point me at a C# implementation of SFMT</strong>?</p> <p>My requirements are to generate an integer between (and including) 0 and 2^20 (1048576).</p> <p>I need to do this <strong>trillions of times everyday</strong> for a simulation running on a 24 hour clock so I am prepared to spend days tweaking this to perfection.</p> <p>Currently I've tweaked the Center Space Mersenne Twister by adding a new method:</p> <pre><code>public uint Next20() { return (uint)(genrand_int32() &gt;&gt; 12); } </code></pre> <p>To fit my requirements. The method <strong>genrand_int32() I'd like to produce my own version genrand_int20()</strong> that generates an integer between (and including) 0 and 2^20 to save on the <strong>cast above and shift</strong> but I don't understand the maths and exactly how to do this. Can anyone help?</p> <p>Also is using a <strong>uint going to be faster that int</strong>, or is just a matter of addressable numbers? because I only need up to 1048576, am only concerned with speed.</p> <p>Also this will be running on a <strong>Windows Server 2003 R2 SP2 (32bit) box on .net 2. Processor AMD Opertor 275 (4 core)</strong>.</p> <p>Thanks</p> http://stackoverflow.com/questions/1088171/c-monte-carlo-incremental-risk-calculation-optimisation-random-numbers-paralle 2 c# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution m3ntat 2009-07-06T17:20:18Z 2009-07-08T21:34:19Z <p>My current task is to optimise a <strong>Monte Carlo Simulation</strong> that calculates Capital Adequacy figures by region for a set of Obligors. </p> <p>It is running about 10 x too slow for where it will need to be in production and number or daily runs required. Additionally the granularity of the result figures will need to be improved down to desk possibly book level at some stage, the code I've been given is basically a prototype which is used by business units in a semi production capacity.</p> <p>The app is <strong>currently single threaded</strong> so I'll need to make it <strong>multi-threaded</strong>, may look at ThreadPool or the <strong>Microsoft Parallels</strong> library but I'm constrained to .Net 2 on the server at this bank so may have to consider this guy's port <a href="http://www.codeproject.com/KB/cs/aforge_parallel.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/aforge_parallel.aspx</a> am trying my best to get them to upgrade to .net 3.5 SP1 but it's a major exercise in an organisation of this size and might not be possible in my contract time frames.</p> <p><strong>I've profiled the app</strong> using the trial of <strong>dottrace</strong> (<a href="http://www.jetbrains.com/profiler" rel="nofollow">http://www.jetbrains.com/profiler</a>) any other good profilers people know of? free ones? </p> <p>A lot of the execution time is spent <strong>generating uniform random numbers</strong> and then translating this to a normally distributed random number, they are using a c# <strong>mersenne twister</strong> implementation not sure where they got it or if it's the best way to go about this (or best implementation) to generate the uniform random numbers, then this is <strong>translated to a normally distributed</strong> version for use in the calculation (haven't delved into the translation code yet).</p> <p>Also has anyone used:</p> <p><a href="http://quantlib.org" rel="nofollow">http://quantlib.org</a> <a href="http://www.qlnet.org" rel="nofollow">http://www.qlnet.org</a> (c# port of quantlib) or <a href="http://www.boost.org" rel="nofollow">http://www.boost.org</a></p> <p>Any alternatives you know of? I'm a c# developer so would prefer c#, but a <strong>wrapper to c++</strong> shouldn't be a problem should it? maybe even faster leveraging the the c++ implementations. Am thinking some of these libraries will have the fastest method to directly generate normally distributed random numbers, without the translation step. Also they may have some other functions that will be helpful in the subsequent calculations.</p> <p>Also the box this is on is a <strong>quad core Opteron 275, 8GB memory but Windows Server 2003</strong> Enterprise <strong>32 bit</strong>, should I advise then to upgrade to a <strong>64 bit OS</strong> ? any links to articles supporting this decision would really be appreciated.</p> <p>Anyway any advice, help you may have is really appreciated.</p> http://stackoverflow.com/questions/1085874/are-these-random-numbers-safe 3 Are these random numbers 'safe' acidzombie24 2009-07-06T07:58:08Z 2009-07-06T16:01:01Z <p>I'm not asking if these are truly random. I just wanted to know if two users hit the a page at the same time can they get the same random number? I'm thinking if i run this on a multicore server will i generate the same randon number a good amount of time due to syncing or whatever other reasons?</p> <pre><code>public static class SBackend { static Random randObj = null; public static void init() { randObj = new Random((int)DateTime.Now.ToBinary()); runFirstTime(); } public static long getRandomId() { long randNum = (long)randObj.Next() &lt;&lt; 33; randNum |= (uint)randObj.Next() &lt;&lt; 2; randNum |= (uint)randObj.Next() &amp; 3; return randNum; } } </code></pre> http://stackoverflow.com/questions/1054076/randomly-generated-hexadecimal-number-in-c 2 Randomly generated hexadecimal number in C# shizbiz 2009-06-28T02:29:04Z 2009-06-28T02:43:06Z <p>How can I generate a random hexadecimal number with a length of my choice using C#?</p> http://stackoverflow.com/questions/1044325/what-is-the-easiest-way-to-generate-quasi-random-numbers-in-c 2 What is the easiest way to generate quasi random numbers in C#? Edward Tanguay 2009-06-25T14:39:26Z 2009-06-25T14:47:25Z <p>All I want is a <strong><em>pragmatic</em></strong> random number generator in C# so I can say e.g. </p> <pre><code>int dummyAge = MathHelpers.GetRandomNumber(20,70); </code></pre> <p>and have it seem <strong>quasi random</strong>, e.g. to generate dummy data.</p> <p>Most <a href="http://stackoverflow.com/questions/668361/fastest-implementation-of-a-true-random-number-generator-in-c">stack overflow questions on this topic</a> and on the web get into a philosophical discussions on <strong>true randomness</strong> which is not what I'm interested at the moment, e.g. I did one in <strong>PHP</strong> a long time ago which uses <strong>milliseconds/sleep</strong> which is fine for dummy data, <strong>I'm just trying to do this in</strong> <strong>C# quick</strong>.</p> <p>Does anyone have a quick <strong>half-decent C# random number generator</strong> based on some time seed, etc. or, how could I change the following code so that it always doesn't generate the same 5 number in a row?</p> <pre><code>using System; namespace TestRandom23874 { class Program { static void Main(string[] args) { Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10)); Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10)); Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10)); Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10)); Console.WriteLine("the random number is: {0}", MathHelpers.GetRandomNumber(1, 10)); Console.ReadLine(); } } public class MathHelpers { public static int GetRandomNumber(int min, int max) { Random random = new Random(); return random.Next(min, max); } } } </code></pre> http://stackoverflow.com/questions/1004807/relationship-between-msvc-rand-and-c-system-random 0 Relationship between MSVC++ rand() and C# System.Random bobobobo 2009-06-17T02:29:38Z 2009-06-17T02:46:11Z <p>How can I make it so the same sequence of random numbers come out of an MSVC++ program and a C# .NET program?</p> <p>Is it possible? Is there any relationship between MSVC++ rand() and System.Random?</p> <p>Given the example below it seems they are totally different.</p> <pre> #include &lt;iostream&gt; using namespace std; int main() { srand( 1 ) ; cout &lt;&lt; rand() &lt;&lt; endl &lt;&lt; rand() &lt;&lt; endl &lt;&lt; rand() &lt;&lt; endl ; } </pre> <pre> using System; class Program { static void Main( string[] args ) { Random random = new Random( 1 ); Console.WriteLine( random.Next() ); Console.WriteLine( random.Next() ); Console.WriteLine( random.Next() ); } } </pre> http://stackoverflow.com/questions/932520/why-does-it-appear-that-my-random-number-generator-isnt-random-in-c 3 Why does it appear that my random number generator isn't random in C#? adeena 2009-05-31T17:39:45Z 2009-06-01T21:00:57Z <p>I'm working in Microsoft Visual C# 2008 Express.</p> <p>I found this snippet of code:</p> <pre><code> public static int RandomNumber(int min, int max) { Random random = new Random(); return random.Next(min, max); } </code></pre> <p>the problem is that I've run it more than 100 times, and it's ALWAYS giving me the same answer when my min = 0 and max = 1. I get 0 every single time. (I created a test function to run it - really - I'm getting 0 each time). I'm having a hard time believing that's a coincidence... is there something else I can do to examine or test this? (I did re-run the test with min = 0 and max = 10 and the first 50ish times, the result was always "5", the 2nd 50ish times, the result was always "9".</p> <p>?? I need something a little more consistently random...</p> <p>-Adeena</p> http://stackoverflow.com/questions/909983/how-to-generate-random-but-also-unique-numbers 5 How to generate "random" but also "unique" numbers ? pragadheesh 2009-05-26T10:24:27Z 2009-05-26T11:50:28Z <p>How are random numbers generated.? How do languages such as java etc generate random numbers, especially how it is done for GUIDs.? i found that algorithms like Pseudorandomnumber generator uses initial values. </p> <p>But i need to create a random number program, in which a number once occurred should never repeats even if the system is restarted etc. I thought that i need to store the values anywhere so that i can check if the number repeats or not, but it will be too complex when the list goes beyond limits.?</p> http://stackoverflow.com/questions/677373/generate-random-values-in-c 6 Generate random values in C# pragadheesh 2009-03-24T13:22:39Z 2009-03-27T17:29:29Z <p>How can I generate random Int64 and UInt64 values using the <code>Random</code> class in C#?</p> http://stackoverflow.com/questions/668361/fastest-implementation-of-a-true-random-number-generator-in-c 2 Fastest implementation of a true random number generator in C# Click Ok 2009-03-20T23:34:46Z 2009-03-21T01:22:10Z <p>I was reading about <a href="http://msdn.microsoft.com/en-us/library/system.random.aspx" rel="nofollow">Random.Next()</a> that for "cryptographically secure random number suitable for creating a random password" MSDN suggests <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rngcryptoserviceprovider.aspx" rel="nofollow">RNGCryptoServiceProvider Class</a></p> <p>What the speed penality? There is some fastest way to get true random numbers?</p> <p><em>EDIT: With Random.Next() I get a new random number. And with...</em></p> <pre><code>byte[] randomNumber = new byte[1]; RNGCryptoServiceProvider Gen = new RNGCryptoServiceProvider(); Gen.GetBytes(randomNumber); int rand = Convert.ToInt32(randomNumber[0]); </code></pre> <p><em>I get a "cryptographically secure random number" I want know if the above code is fast compared with <strong>"Random.Next()"</strong> and if there is some fast way to get same results, ok?</em></p> http://stackoverflow.com/questions/537785/is-the-random-generator-from-delphi-the-same-calculation-as-c-if-fed-the-same-se 4 Is the Random Generator from Delphi the same calculation as C# if fed the same seed? GluedHands 2009-02-11T16:59:41Z 2009-02-12T13:45:42Z <p>I'm translating some Delphi code into c# code when I ran into this. I don't have an environment setup for Delphi so I can't test it myself.</p> <p>Delphi:</p> <pre><code>RandSeed := var1; Result := Random($FF); </code></pre> <p>c#:</p> <pre><code>Random RandSeed = new Random(var1); Result = RandSeed.Next(255); </code></pre> <p>Would these put the same value in Result? If not, any ideas on a way to do so?</p> http://stackoverflow.com/questions/519891/ensure-uniform-ish-distribution-with-random-number-generation 1 Ensure uniform (ish) distribution with random number generation Rocco 2009-02-06T11:03:29Z 2009-02-06T12:27:59Z <p>I have a list of objects and I would like to access the objects in a random order continuously.</p> <p>I was wondering if there was a way of ensuring that the random value were not always similar.</p> <p>Example.</p> <p>My list is a list of Queues, and I am trying to interleave the values to produce a real-world scenario for testing.</p> <p>I don't particularly want all of the items in Queues 1 and 2 before any other item. Is there a guaruanteed way to do this?</p> <p>Thanks</p> <p>EDIT :: The List of Queues I have is a basically a list of files that i am transmitting to a webservice. Files need to be in a certain order hence the Queues.</p> <p>So I have Queue1 = "set1_1.xml", set1_2.xml", ... "set1_n.xml" Queue2 ... ... QueueN</p> <p>While each file needs to be transmitted in order in terms of the other files in its queue, I would like to simulate a real world simulation where files would be received from different sources at different times and so have them interleaved.</p> <p>At the moment I am just using a simple rand on 0 to (number of Queues) to determine which file to dequeue next. This works but I was asking if there might have been away to get some more uniformity rather than having 50 files from Queue 1 and 2 and then 5 files from Queue 3.</p> <p>I do realise though that altering the randomness no longer makes it random.</p> <p>Thank you for all your answers.</p> http://stackoverflow.com/questions/418817/pros-and-cons-of-rngcryptoserviceprovider 3 Pros and cons of RNGCryptoServiceProvider configurator 2009-01-07T01:04:36Z 2009-01-08T01:30:11Z <p>What are the pros and cons of using <code>System.Security.Cryptography.RNGCryptoServiceProvider</code> vs <code>System.Random</code> are. I know that <code>RNGCryptoServiceProvider</code> is 'more random', i.e. less predictable for hackers. Any other pros or cons?</p> <p><hr /></p> <p><strong>UPDATE:</strong></p> <p>According to the responses, here are the pros and cons of using <code>RNGCryptoServiceProvider</code> so far:</p> <h3>Pros</h3> <ul> <li><code>RNGCryptoServiceProvider</code> is a stronger cryptographically random number, meaning it would be better for determining encryption keys and the likes.</li> </ul> <h3>Cons</h3> <ul> <li><code>Random</code> is faster because it is a simpler calculation; when used in simulations or long calculations where cryptographic randomness isn't important, this should be used.</li> </ul> http://stackoverflow.com/questions/403572/how-to-get-random-double-value-out-of-random-byte-array-values 2 How to get random double value out of random byte array values? Kamil Zadora 2008-12-31T17:34:54Z 2008-12-31T18:30:58Z <p>I would like to use RNGCryptoServiceProvider as my source of random numbers. As it only can output them as an array of byte values how can I convert them to 0 to 1 double value while preserving uniformity of results?</p> http://stackoverflow.com/questions/369636/seeding-a-random-number-generator-in-net 2 Seeding a random number generator in .Net Alexey Romanov 2008-12-15T20:42:55Z 2008-12-15T21:24:38Z <p>I have a PRNG with nice properties which uses 6 <code>UInt32</code>s as state. I need to come up with a reasonable way to seed it. Two obvious possibilities are: 1) generate 6 random numbers using <code>System.Random</code> and use them as seeds; 2) generate 2 <code>Guid</code>s with <code>Guid.NewGuid()</code>. Which would be better?</p> <p>I do <em>not</em> need cryptographic security.</p> http://stackoverflow.com/questions/44408/how-do-you-generate-a-random-number-in-c 7 How do you generate a random number in C#? lillq 2008-09-04T18:30:57Z 2008-10-05T06:05:09Z <p>I would like to generate a random floating point number between 2 values. What is the best way to do this in C#?</p>