active questions tagged random+.net - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:48:46Z http://stackoverflow.com/feeds/tag/random+.net http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1809065/random-linq-query 0 Random Linq Query Kovu 2009-11-27T14:23:51Z 2009-11-27T14:58:34Z <p>Hi guys,</p> <p>how I can get a random row from a selection in my linq query?</p> <p>I tried:</p> <pre><code>Bot bot = (from a in dc.Bot select a).OrderBy(x =&gt; Guid.NewGuid()).First(); </code></pre> <p>But doesn't work, I ever get the same.</p> http://stackoverflow.com/questions/1713114/net-random-number-or-number-of-free-bytes-in-memory 1 .NET: Random number or number of free bytes in memory? JamesBrownIsDead 2009-11-11T04:56:43Z 2009-11-11T05:18:24Z <p>How can I get the number of free bytes available in memory, in .NET?</p> <p>Also, can you think of a potentially better random number beside <code>new Random().Next()</code>, <code>DateTime.Now.Ticks</code>, or available system memory?</p> http://stackoverflow.com/questions/1483670/whats-the-best-practice-for-getting-a-random-date-time-between-two-date-times 0 What's the best practice for getting a random date-time between two date-times? Pure.Krome 2009-09-27T14:21:27Z 2009-09-27T18:27:20Z <p>Hi folks,</p> <p>I'm trying to randomize the value for a simple DateTime datafield.</p> <p>I wish to get a random date/time between two date/times (e.g. min date/time and max date/time).</p> <p>So lets imagine I'm after a random date/time between</p> <p>1/1/2000 10am and 1/1/2000 5pm.</p> <p>Also, this code will be used in a for loop, with 100 items .. meaning all 100 items will have random date/times between the min/max date/time period.</p> <p>phew! </p> <p>any ideas?</p> http://stackoverflow.com/questions/742887/select-random-file-from-directory 1 select random file from directory Crash893 2009-04-13T02:30:01Z 2009-08-25T13:21:33Z <p>Any suggestions on how to improve this method? I am currently using it to select a single wallpaper from a directory of wallpapers</p> <p>I know your not supposed to use arraylist anymore but i couldnt think of a altrnative also im not sure how to filter for more than just one type of file (ie jpg gif png) in the directory info.</p> <p>any suggestions or tweaks would be fantastic</p> <pre><code>private string getrandomfile(string path) { ArrayList al = new ArrayList(); DirectoryInfo di = new DirectoryInfo(path); FileInfo[] rgFiles = di.GetFiles("*.*"); foreach (FileInfo fi in rgFiles) { al.Add(fi.FullName); } Random r = new Random(); int x = r.Next(0,al.Count); return al[x].ToString(); } </code></pre> <p>Thanks</p> <p>Crash</p> http://stackoverflow.com/questions/1272649/best-way-to-get-random-selection-from-datatable 0 Best way to get random selection from DataTable? Galwegian 2009-08-13T15:17:19Z 2009-08-13T15:39:32Z <p>As the title says, what's the most efficient way to get a random selection of x DataRows from a DataTable.</p> <p>Would it be to iteratively do something like the following until I have as many as I need?</p> <pre><code>protected DataRow SelectRandomRow(DataTable dataTable, Random randomSelector) { return dataTable.Rows[randomSelector.Next(dataTable.Rows.Count)]; } </code></pre> <p>There must be a better way..?</p> http://stackoverflow.com/questions/1134738/random-number-clashes-with-same-net-code-in-different-processes 2 Random number clashes with same .Net code in different processes Damovisa 2009-07-16T00:00:17Z 2009-07-16T12:15:10Z <p>Before I start, I want to point out that I'm pretty sure this actually happened. All my logs suggest that it did.</p> <p><strong>I'd like to know whether I'm wrong and this is impossible, whether it's just incredibly unlikely (which I suspect), or if it's not that unlikely and I'm doing something fundamentally wrong.</strong></p> <p>I have 4 instances of the same code running as Windows Services on the same server. This server has a multicore (4) processor.</p> <p>Here's a summary of the code:</p> <pre><code>public class MyProcess { private System.Timers.Timer timer; // execution starts here public void EntryPoint() { timer = new System.Timers.Timer(15000); // 15 seconds timer.Elapsed += new System.Timers.ElapsedEventHandler(Timer_Elapsed); timer.AutoReset = false; Timer_Elapsed(this, null); } private void Timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) { string uid = GetUID(); // this bit of code sends a message to an external process. // It uses the uid as an identifier - these shouldn't clash! CommunicationClass.SendMessage(uid); timer.Start(); } // returns an 18 digit number as a string private string GetUID() { string rndString = ""; Random rnd = new Random((int)DateTime.Now.Ticks); for (int i = 0; i &lt; 18; i++) { rndString += rnd.Next(0, 10); } return rndString; } </code></pre> <p>The external process that receives these messages got confused - I think because the same uid came from two separate processes. Based on that, it appears that the <code>GetUID()</code> method returned the same "random" 18 digit string for two separate processes.</p> <p>I've seeded the Random class using DateTime.Now.Ticks which I thought would provide protection between threads - one tick is 100 nanoseconds, surely two threads couldn't get the same seed value.</p> <p>What I didn't account for obviously is that we're not talking about threads, we're talking about processes on a multicore processor. That means that this code can <strong>literally</strong> run twice at the same time. I think that's what's caused the clash.</p> <p><strong>Two processes running the same code at approximate 15 second intervals managed to hit the same code inside 100 nanoseconds. Is this possible? Am I on the right track here?</strong></p> <p>I'd be grateful for your thoughts or suggestions.</p> <p><hr /></p> <p>To clarify, I can't really use a GUID - the external process I'm communicating with needs an 18 digit number. It's old, and I can't change it unfortunately.</p> http://stackoverflow.com/questions/472013/generate-a-series-of-random-numbers-that-add-up-to-n-in-c 12 Generate a series of random numbers that add up to N in c# Fatal510 2009-01-23T05:47:41Z 2009-06-20T21:16:00Z <p>How do I generate 30 random numbers between 1-9, that all add up to 200 (or some arbitrary N), in C#?</p> <p>I'm trying to generate a string of digits that can add together to be N.</p> http://stackoverflow.com/questions/899528/how-to-run-a-script-at-random-intervals 0 How to run a script at random intervals Pbearne 2009-05-22T19:15:05Z 2009-05-22T19:36:22Z <p>Hi</p> <p>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.</p> <p>What is the best method to do this? </p> http://stackoverflow.com/questions/807892/why-does-this-method-return-the-same-random-string-each-time 3 why does this method return the same random string each time? Crash893 2009-04-30T16:40:28Z 2009-05-01T15:22:53Z <p>I need to create a block of unique lines to test a different project im working on.</p> <p>so i created a simple program to generate a random string of X length.</p> <p>The issue is that if i call it once i get a random string if i call it again (in a for loop for example I get the same string for the entire execution of the loop.</p> <p>I have a feeling that its being cached or something but i didn't know .net did that and im just confused at this point</p> <p>calling code</p> <pre><code> StreamWriter SW = new StreamWriter("c:\\test.txt"); int x = 100; while (x &gt;0) { SW.WriteLine(RandomString(20)); x--; } </code></pre> <p>here is the method</p> <pre><code>private static string RandomString(int Length) { StringBuilder sb = new StringBuilder(); Random randomNumber = new Random(); for (int i = 0; i &lt;= Length; ++i) { int x = randomNumber.Next(65, 122); sb.Append(Convert.ToChar(x)); } return sb.ToString(); } </code></pre> <p>and here is the output</p> <pre><code>"VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB .................. VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB VEWMCQ`Fw]TvSFQawYnoB" </code></pre> <p>So what gives i thought Random.next() would always return a new random number?</p> http://stackoverflow.com/questions/742685/select-random-file-from-directory 1 select random file from directory Crash893 2009-04-13T00:15:09Z 2009-04-16T02:11:14Z <p>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?</p> <p>In this particular case I want to select a wallpaper from "C:\wallpapers" every 15 or so minutes.</p> <p>Thanks.</p> http://stackoverflow.com/questions/697344/what-is-the-best-way-to-efficiently-extract-a-small-random-subset-of-a-large-enum 1 What is the best way to efficiently extract a small random subset of a large enumeration? TheSoftwareJedi 2009-03-30T14:03:47Z 2009-03-30T14:35:10Z <p>What is the best way to grab n items from an IEnumerable&lt;T&gt; in random order?</p> <p>I'm writing a store API and need to provide a small set of random items from a sometimes huge enumeration of items. The underlying enumerable is sometimes an array, and sometimes a lazy evaluated filter of said array.</p> <p>Since I'm just grabbing a proportionally small number of items from the enumerations, it is better to use some sort of repeatedly random index into the enumeration and dupe check every time rather than randomly sort the entire list using an existing algorithm and grab top x, right?</p> <p>Any better ideas?</p> http://stackoverflow.com/questions/679623/generate-user-friendly-codes 3 Generate User Friendly Codes B Z 2009-03-24T23:14:00Z 2009-03-26T03:46:05Z <p>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 there any standard methods/algorithms to accomplish this? I was thinking of using a GUID and applying CRC. Is this a bad idea?</p> <p>Using .netframework 3.5 if it matters.</p> http://stackoverflow.com/questions/625617/dictionarywords-such-as-names-items-etc-library-for-net 2 Dictionary(words such as names, items, etc) library for .NET? Konstantinos 2009-03-09T09:58:41Z 2009-03-09T10:15:00Z <p>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</p> <p>I want to use this in a database-filling operation and the requirement is that the data should look real.</p> http://stackoverflow.com/questions/490123/how-to-test-for-sometimes-fails 1 How to test for sometimes fails? Cameron MacFarland 2009-01-29T01:08:38Z 2009-01-29T01:20:11Z <p>I'm trying to write a unit test for a module that will give me a random list of numbers given certain criteria.</p> <p>The particular test I'm writing is a reshuffle of the original sequence. I'm testing that</p> <ul> <li>The sequences are the same length</li> <li>The sequences have the same values</li> <li>The sequences are not in the same order</li> </ul> <p>The problem with this is that sometimes the sequences <em>are</em> in the same order. What would be the best way to deal with this?</p> <p>I'm using NUnit (but could use another test framework if it helps).</p> http://stackoverflow.com/questions/467271/how-random-is-system-guid-newguid 1 How Random is System.Guid.NewGuid()? GateKiller 2009-01-21T22:20:24Z 2009-01-22T00:51:46Z <p>I know this may sounds like a pointless question, but hear me out...</p> <p>I basically want to know if I can trust the GUID to generate a value which will be unique 100% of the time and impossible to predict.</p> <p>I'm basically rolling my on login system for a website and want to know if the GUID is secure enough for session cookies.</p> <p>Any background on how the GUID is generated would be much appreciated in evaluating the answers.</p> <p><strong>Thanks for the links to duplicate questions, however, my question is specific to the .Net framework.</strong></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/417831/what-is-the-best-way-of-randomly-re-arranging-a-list-of-items-in-c 5 What is the best way of randomly re-arranging a list of items in c# ? Arron 2009-01-06T19:45:22Z 2009-01-06T20:00:25Z <p>I have a list of objects and I want to reorder them randomly on each request. What is the best way of doing this?</p> http://stackoverflow.com/questions/411843/how-random-is-system-random-in-net-3 3 How random is System.Random in .net 3 ? Apollo 2009-01-04T22:52:52Z 2009-01-05T00:28:09Z <p>I am currently writing a simple password generator (C#). For that I need some random Numbers.</p> <p>Is it OK to simply use the Random Class that ships with .NET or are there any known problems with that? </p> http://stackoverflow.com/questions/295900/system-random-keeps-on-returning-the-same-value 0 System.Random keeps on returning the same value Tomas Pajonk 2008-11-17T15:36:56Z 2008-11-17T16:14:31Z <p>I am using a System.Random object which is instantiated with a fixed seed all thoughout the application. I am calling the NextDouble method and after some time passed I am getting 0.0 as result.</p> <p>Is there any remedy to this, has anyone else encountered this ?</p> <p>EDIT: I have one seed for the whole run which is set to 1000 for convience sake. The random.NextDouble is called several hundred thousand times. It is an optimizer application and could run for couple hours, but this actually happens after 10-0 mins of execution. I have recently added little bit more random calls to the app.</p> http://stackoverflow.com/questions/218060/random-gaussian-variables 6 Random Gaussian Variables Xelluloid 2008-10-20T11:06:09Z 2008-10-20T21:34:49Z <p>Hi there,</p> <p>does someone of you know if there is a class in the standard library of .net, that gives me the functionality to create random variables that follow a gaussian distribution? </p> <p>Greets</p> <p>Sebastian</p>