active questions tagged random+c# - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:06:49Zhttp://stackoverflow.com/feeds/tag/random+c#http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1789131/linq2sql-efficient-way-to-get-random-elements-with-weight0Linq2sql: efficient way to get random elements with weight?Niels Bosma2009-11-24T10:14:33Z2009-11-24T13:50:35Z
<p>I'm using the NEWID approach to get random elements:</p>
<pre><code>partial class DataContext
{
[Function(Name = "NEWID", IsComposable = true)]
public Guid Random()
{
throw new NotImplementedException();
}
}
...
var ws = db.WorkTypes
.Where(e => e.HumanId != null && e.SeoPriority != 0)
.OrderBy(e => db.Random())
.Select(e => new
{
DescriptionText = e.DescriptionText,
HumanId = e.HumanId
})
.Take(take).ToArray();
</code></pre>
<p>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. </p>
<pre><code>var ws = db.WorkTypes
.Where(e => e.HumanId != null && e.SeoPriority != 0)
.OrderBy(e => /*????*/ * e.SeoPriority)
.Select(e => new
{
DescriptionText = e.DescriptionText,
HumanId = e.HumanId
})
.Take(take).ToArray();
</code></pre>
<p>How do I solved this? As a GUID isn't number?</p>
http://stackoverflow.com/questions/1713114/net-random-number-or-number-of-free-bytes-in-memory1.NET: Random number or number of free bytes in memory?JamesBrownIsDead2009-11-11T04:56:43Z2009-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/1664395/select-random-datas-from-file1Select Random Datas From FileNathan Campos2009-11-02T23:36:40Z2009-11-02T23:49:28Z
<p>Hello,</p>
<p>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:</p>
<pre><code>Nathan
John
Max
Someone
</code></pre>
<p>But how I can access this file(already know) and select a random name, print it and delete this name from the file? Thanks.</p>
http://stackoverflow.com/questions/1643878/c-random-code-field-generator-for-object2C# Random Code Field Generator for Objectabmv2009-10-29T13:47:47Z2009-10-30T14:00:38Z
<p>I have an object with the following properties</p>
<p><br>GID
<br>ID
<br>Code
<br>Name</p>
<p>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 different so I'm like screwed...</p>
<p>my plan was to put ####-#### totally random values in code how can I generate something like that say a windows 7 serial generator type stuff but would that not have an overhead what would you do in this case.</p>
http://stackoverflow.com/questions/1627064/how-could-i-improve-this-c-randomising-method4How could I improve this C# randomising method?Neil Barnwell2009-10-26T20:10:17Z2009-10-27T18:16:06Z
<p>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.</p>
<pre><code>public static IList<T> RandomiseList<T>(IList<T> list, int seed)
{
Random random = new Random(seed);
List<T> takeFrom = new List<T>(list);
List<T> ret = new List<T>(takeFrom.Count);
while (takeFrom.Count > 0)
{
int pos = random.Next(0, takeFrom.Count - 1);
T item = takeFrom[pos];
takeFrom.RemoveAt(pos);
ret.Add(item);
}
return ret;
}
</code></pre>
http://stackoverflow.com/questions/1564182/-net-easy-way-to-generate-random-easy-to-remember-passcodes0(.NET) Easy way to generate random, easy to remember passcodesJackM2009-10-14T04:05:47Z2009-10-17T14:18:16Z
<p>I have a project in the works, and I'll need to associate a passcode with an item.<br />
The password should be completely non sequential or easily guessable, yet simple to remember.</p>
<p>I thought about doing something like this.</p>
<pre><code>string rand = System.Guid.NewGuid().ToString();
rand.Substring(0,3);
</code></pre>
<p>Return the first 4 digits of a GUID.</p>
<p>I was wondering if anyone else had something similar they worked on, and potentially a better solution than this.</p>
<p>Security is important as we don't want people to be able to guess the digits, however this isn't dealing with money or personal data so it doesn't have to be NSA capable :)</p>
<p>Thanks guys!</p>
http://stackoverflow.com/questions/1556706/random-background-image-on-div0Random background image on DIVIan Houghton2009-10-12T20:27:30Z2009-10-12T21:30:05Z
<p>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.</p>
<p>The problem I have is that the code <strong>works</strong> when stepping through the code in debug mode. Once you run the code on the website without debugging, all the images are the same. Its almost as if the random number is not getting picked up quick enough.</p>
<p>The usercontrol is inside of a datalist.</p>
<p>The usercontrol is this:</p>
<pre><code><asp:Panel ID="productPanel" CssClass="ProductItem" runat="server">
<div class="title" visible="false">
<asp:HyperLink ID="hlProduct" runat="server" />
</div>
<div class="picture">
<asp:HyperLink ID="hlImageLink" runat="server" />
</div>
<div class="description" visible="false">
<asp:Literal runat="server" ID="lShortDescription"></asp:Literal>
</div>
<div class="addInfo" visible="false">
<div class="prices">
<asp:Label ID="lblOldPrice" runat="server" CssClass="oldproductPrice" />
<br />
<asp:Label ID="lblPrice" runat="server" CssClass="productPrice" /></div>
<div class="buttons">
<asp:Button runat="server" ID="btnProductDetails" OnCommand="btnProductDetails_Click"
Text="Details" ValidationGroup="ProductDetails" CommandArgument='<%# Eval("ProductID") %>'
SkinID="ProductGridProductDetailButton" /><br />
<asp:Button runat="server" ID="btnAddToCart" OnCommand="btnAddToCart_Click" Text="Add to cart"
ValidationGroup="ProductDetails" CommandArgument='<%# Eval("ProductID") %>' SkinID="ProductGridAddToCartButton" />
</div>
</div>
</code></pre>
<p></p>
<p>and the code behind is this:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
// Some code here to generate a random number between 0 & 3
System.Random RandNum = new System.Random();
int myInt = RandNum.Next(4);
if (productPanel.BackImageUrl != null)
{
switch (myInt)
{
case 0:
productPanel.BackImageUrl = "../App_Themes/emmaharris/images/frame1.gif";
break;
case 1:
productPanel.BackImageUrl = "../App_Themes/emmaharris/images/frame2.gif";
break;
case 2:
productPanel.BackImageUrl = "../App_Themes/emmaharris/images/frame3.gif";
break;
case 3:
productPanel.BackImageUrl = "../App_Themes/emmaharris/images/frame4.gif";
break;
}
}
// End of new code to switch background images
}
</code></pre>
<p>T</p>
http://stackoverflow.com/questions/1493051/random-number-0-or-11Random number: 0 or 1Rickjaah2009-09-29T14:52:29Z2009-09-29T15:00:39Z
<p>Am I looking too far to see something as simple as pick a number: 0 or 1?</p>
<pre><code> Random rand = new Random();
if (rand.NextDouble() == 0)
{
lnkEvents.CssClass = "selected";
}
else
{
lnkNews.CssClass = "selected";
}
</code></pre>
http://stackoverflow.com/questions/1437825/random-number-generation-in-c1Random number generation in C#Fiona Holder2009-09-17T10:00:12Z2009-09-17T10:41:32Z
<p>I have been writing some C# code for a training exercise, in which I had to create an array of random rectangles.</p>
<p>Problem being that the rectangle being produced by my GetRandomRectangle function was always the same.
I was using <code>System.Random</code> to generate the coordinates for the rectangle.</p>
<p>I've realised that it was because the Random object was beign created with the default constructor, and so had the same seed. I've modified it to get a different seed for each rectangle now, and it works fine. </p>
<p>The question is - how does it decide on the 'default seed'? I've noticed that it doesn't seem to change over time either, a rectangle created with seed 2 will always be given the same dimensions.</p>
<p>It's probably something that I could Google, but it's nice to hear opinions and info from you guys as well. </p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1413342/are-there-any-tools-to-populate-class-properties-with-random-data1Are there any tools to populate class properties with random data?Webjedi2009-09-11T21:20:39Z2009-09-12T04:07:47Z
<p>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:</p>
<pre><code>public class Customer
{
[Attribute("FirstName")]
private string CustomerFirstName;
public {get;set} //etc
[Attribute("LastName")]
private string CustomerLastName;
public {get;set;} //etc
[Attribute("DateTime")]
private DateTime CustomerSignUpDate;
public DateTime {get;set;} //yadda
[Attribute("Phone")]
private string CustomerPhone;
public string {get;set;} //yadda
}
</code></pre>
<p>And then do like this</p>
<pre><code>IList<Customer> CustomerList=ClassFillerOutClass(new Customer(),5);
</code></pre>
<p>And the result would be a List of 5 Customers that have appropriate 'random' data in their properties.</p>
<p>If this doesn't exist...I guess I could start a project myself to do...I just don't want to reinvent the wheel if it's not necessary.</p>
<p>EDIT: I forgot a piece. I'm looking to use this as a test tool. So in the example above I could quickly create a list of 5 customers with random but appropriate values. And then say pass that to my persistence method, and have something I can check against. I'm trying to avoid manually creating a populated object everytime for my TDD purposes.</p>
<p>EDIT 2: Ok so I started rolling my own...I'll post it on Codeplex this weekend and link it here...I clearly won't be done but it'll be a start if anyone else wants to work on it.</p>
http://stackoverflow.com/questions/1398070/how-to-randomly-select-a-string-using-c1How to randomly select a string using C#?rajani2009-09-09T05:57:09Z2009-09-09T11:42:07Z
<p>When I click a button a string should appear as output ex. <code>good morning</code> or <code>good afternoon</code>. How can I use C# to randomly select the string to display?</p>
http://stackoverflow.com/questions/609501/generating-a-random-decimal-in-c10Generating a Random Decimal in C#Daniel Ballinger2009-03-04T07:02:02Z2009-08-27T16:39:11Z
<p>How can I get a random System.Decimal? System.Random doesn't support it directly.</p>
http://stackoverflow.com/questions/742887/select-random-file-from-directory1select random file from directoryCrash8932009-04-13T02:30:01Z2009-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/1303368/how-to-generate-normally-distributed-random-from-an-integer-range1How to generate normally distributed random from an integer range?John Smith2009-08-20T00:33:27Z2009-08-21T01:17:02Z
<p>Given the start and the end of an integer range, how do I calculate a normally distributed random integer between this range?</p>
<p>I realize that the normal distribution goes into -+ infinity. I guess the tails can be cutoff, so when a random gets computed outside the range, recompute. This elevates the probability of integers in the range, but as long as the this effect is tolerable (<5%), it's fine.</p>
<pre><code>public class Gaussian
{
private static bool uselast = true;
private static double next_gaussian = 0.0;
private static Random random = new Random();
public static double BoxMuller()
{
if (uselast)
{
uselast = false;
return next_gaussian;
}
else
{
double v1, v2, s;
do
{
v1 = 2.0 * random.NextDouble() - 1.0;
v2 = 2.0 * random.NextDouble() - 1.0;
s = v1 * v1 + v2 * v2;
} while (s >= 1.0 || s == 0);
s = System.Math.Sqrt((-2.0 * System.Math.Log(s)) / s);
next_gaussian = v2 * s;
uselast = true;
return v1 * s;
}
}
public static double BoxMuller(double mean, double standard_deviation)
{
return mean + BoxMuller() * standard_deviation;
}
public static int Next(int min, int max)
{
return (int)BoxMuller(min + (max - min) / 2.0, 1.0);
}
}
</code></pre>
<p>I probably need to scale the standard deviation some how relative to the range, but don't understand how.</p>
<p>Answer:</p>
<pre><code> // Will approximitely give a random gaussian integer between min and max so that min and max are at
// 3.5 deviations from the mean (half-way of min and max).
public static int Next(int min, int max)
{
double deviations = 3.5;
int r;
while ((r = (int)BoxMuller(min + (max - min) / 2.0, (max - min) / 2.0 / deviations)) > max || r < min)
{
}
return r;
}
</code></pre>
http://stackoverflow.com/questions/1306441/how-can-i-generate-pseudo-random-readable-strings-in-java8How can I generate pseudo-random "readable" strings in Java?Jared2009-08-20T14:07:19Z2009-08-20T17:39:53Z
<p>Generating a truly random string of a given length is a fairly straightforward (and already-well-covered) task.</p>
<p>However; I'd like to generate a "pseudo" random string with the additional constraint that it be relatively easily readable (to a native-English reader.)</p>
<p>I think another way to say this is to say that the generated string should consist of "recognizable syllables." For example, "akdjfwv" is a random string, but it's not recognizable at all. "flamyom"; however, is very "recognizable" (even though it's nonsense.)</p>
<p>Obviously, one could make a long list of "recognizable syllables," and then randomly select them.</p>
<p>But, is there a better way to do something like programmatically generate a "recognizable syllable," or generate a "syllable" and then test it to see if it's "recognizable"?</p>
<p>I can think of several ways to go about this implementation, but if someone has already implemented it (preferrably in Java or C#,) I'd rather re-use their work.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1212190/special-random-number6special random numberVahid.m2009-07-31T12:09:44Z2009-07-31T15:00:52Z
<p>I'd like to have a random number like this:(in C#)</p>
<pre><code>Random r = new Random();
r.next (0,10)
</code></pre>
<p>BUT it's important to the random number be more near 8,(or it be usually big),
I mean if we use a for:</p>
<pre><code>for (int i =0; i<...;i++)
{
write: r.next (0,10)
}
</code></pre>
<p>the result be like this;</p>
<pre><code>8 7 6 9 1 0 5 3 2
2 3 8 9 7 7 6 2 3
8 8 9 7 2 8 2 8 4
3
</code></pre>
http://stackoverflow.com/questions/1166408/c-mersenne-twister-random-integer-generator-implementation-sfmt-monte-carlo-si1c# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulationm3ntat2009-07-22T16:10:03Z2009-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() >> 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/1154879/c-fastest-way-to-randomly-index-into-an-array1c# Fastest way to randomly index into an arraym3ntat2009-07-20T17:39:58Z2009-07-21T15:16:55Z
<p>I have an array of double values "vals", I need to randomly index into this array and get a value. GenRandomNumber() returns a number between 0 and 1 but never 0 or 1. I am using Convert.ToInt32 to basically get everything to the left of my decimal place, but there must be a more efficient way of doing this?</p>
<p>Here's my code:</p>
<pre><code>public double GetRandomVal()
{
int z = Convert.ToInt32(GenRandomNumber() * (vals.Length));
return vals[z];
}
</code></pre>
<p>Thanks</p>
<p>Update</p>
<p>Thanks to all those who have replied, but I am constrained to use a supplied MersenneTwister random number implementation that has method rand.NextDouble()</p>
<p><strong>Update 2</strong></p>
<p>Thinking about this some more, all I need to do is <strong>gen a random number between 0 and array.length-1 and then use that to randomly index into the array</strong>. vals length is 2^20 = 1048576 so generating a random int is sufficient. I notice my MersenneTwister has a method:</p>
<pre><code>public int Next(int maxValue)
</code></pre>
<p>If I call it like <strong>vals[rand.Next(vals.length-1)]</strong> that should do it right? I also see the MersenneTwister has a constructor:</p>
<pre><code>public MersenneTwister(int[] init)
</code></pre>
<p>Not sure what this is for, can I use this to prepopulate the acceptable random numbers for which I provide an array of 0 to vals.length?</p>
<p>FYI vals is a double array of length 1048576 partitioning the normal distribution curve. I am basically using this mechanism to create Normally distributed numbers as fast as possible, the <strong>monte carlo simulation uses billions of Normally distributed random numbers every day</strong> so every little bit helps.</p>
http://stackoverflow.com/questions/1134738/random-number-clashes-with-same-net-code-in-different-processes2Random number clashes with same .Net code in different processesDamovisa2009-07-16T00:00:17Z2009-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 < 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/730268/unique-random-string-generation4Unique random string generationKirtan2009-04-08T14:27:33Z2009-07-06T11:42:00Z
<p>I'd like to generate random unique strings like the ones being generated by MSDN library:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/t9zk6eay.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/t9zk6eay.aspx</a>, for example. A string like 't9zk6eay' should be generated.</p>
http://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers11Random Number Between 2 Double NumbersJason Heine2009-06-30T17:17:54Z2009-06-30T17:29:46Z
<p>It is possible to generate a random number between 2 doubles?</p>
<p>Example:</p>
<pre><code>public double GetRandomeNumber(double minimum, double maximum)
{
return Random.NextDouble(minimum, maximum)
}
</code></pre>
<p>Then I call it with the following:</p>
<pre><code>double result = GetRandomNumber(1.23, 5.34);
</code></pre>
<p>Any thoughts would be appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/767999/random-number-generator-not-working-the-way-i-had-planned-c13Random number generator not working the way I had planned (C#)John2009-04-20T12:11:24Z2009-06-25T17:24:34Z
<p>This is a very strange problem.</p>
<p>Here is my code:</p>
<pre><code> //Function to get random number
public static int RandomNumber(int min, int max)
{
Random random = new Random();
return random.Next(min, max);
}
</code></pre>
<p>How I call it:</p>
<pre><code> byte[] mac = new byte[6];
for (int x = 0; x < 6; ++x)
mac[x] = (byte)(Misc.RandomNumber((int)0xFFFF, (int)0xFFFFFF) % 256);
</code></pre>
<p>Problem:</p>
<p>If I step that loop with the debugger during runtime I get different values(which is what I want).
However, if I put a breakpoint two lines below that code,all members of the "mac" array have equal value.</p>
<p>Why does that happen?</p>
http://stackoverflow.com/questions/472013/generate-a-series-of-random-numbers-that-add-up-to-n-in-c12Generate a series of random numbers that add up to N in c#Fatal5102009-01-23T05:47:41Z2009-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/1004929/randomnumber-method-returns-same-number-every-time-called2RandomNumber method returns same number every time called Eric2009-06-17T03:14:52Z2009-06-17T05:46:19Z
<p>Hi There,</p>
<p>I am trying to generate a different random number every time my RandomNumber method is called from within my for loop. Right now, it returns the same number every time.</p>
<p>This is my RandomNumber method:</p>
<pre><code> private int RandomNumber(int min, int max)
{
Random random = new Random();
return random.Next(min, max);
}
</code></pre>
<p>This is the context I am using it in: (it's a little messy just because I have been messing with trying to get it to work....)</p>
<pre><code> for (int i = 0; i < charsRaw.Length; i++)
{
int max = charsRaw.Length - 1;
int rand = 0;
rand = RandomNumber(0, max);
charsNew[i] = charsRaw[rand];
text2 += charsNew[i];
}
</code></pre>
<p>I can't seem to get it to return a different value every time it is called with the for loop.</p>
<p>Although, when i stick a MessageBox.Show(rand.ToString()) after text2 += charsNew[i], it gives me a different value every time and works the way I intended it to. Strange.</p>
<p>Thanks!
Eric</p>
http://stackoverflow.com/questions/933077/displaying-random-numbers2displaying random numberstintincute2009-05-31T23:07:40Z2009-06-15T15:10:00Z
<p>Hello</p>
<p>I'm trying to design a code where one guess a number. I defined the range which number to display in my listbox. I started to write Random(1,10) but if I enter 11, it still writes in my listbox. How can I just write the number selected from my range, which is 1-10?</p>
<p>I'm quite lost here. Any ideas?</p>
<p>Thanks here is a part of my code:</p>
<pre><code> private void btnOk_Click(object sender, EventArgs e)
{
string yourNumber;
yourNumber = textBox1.Text.Trim();
int returnNumber = RandomNumber(1, 10);
int.TryParse(textBox1.Text, out returnNumber);
listBox1.Items.Add(returnNumber);
}
</code></pre>
<p>=========
Additional question
if I would like to display a range of number like for example 1-10, how could I do that:
So for example, if the user will type 11 the program will not accept that. </p>
<p>I made something like this: </p>
<pre><code> int returnNumber = RandomNumber(1, 10);
string yourNumber;
yourNumber = textBox1.Text.Trim();
if(Int32.TryParse(textBox1.Text>=1)) && (Int32.TryParse(textBox1.Text<=10));
{
listBox1.Items.Add(yourNumber);
textBox1.Text = string.Empty;
}
</code></pre>
<p>something is wrong in the program</p>
<p>==============</p>
<p>hello again thanks Nathaniel for the reply. But I tried this one:</p>
<pre><code>int returnNumber=RandomNumber(1,10);
int counter=1;
int yourNumber;
Int32.TryParse(textBox1.Text.Trim(), out yourNumber);
if (yourNumber >=1 && yourNumber <= 10)
{
listBox1.Items.Add(yourNumber);
}
else
{
MessageBox.Show("Please enter a number between 1-10");
}
</code></pre>
<p>What I would like to do is design a program for guessing a number. So this is the first part.</p>
<p>====</p>
<p>Hi again, here is my final code: I would be happy if you could give feedback on how I can do it better. Thanks. I think the next thing I'll do is to limit the times the user types the input. That means, they can only guess the right number 3 times or 5 times. Not sure where to implement it</p>
<pre><code> namespace Guessing_Game
{
public partial class Form1 : Form
{
private static int randomNumber;
private const int rangeNumberMin = 1;
private const int rangeNumberMax = 10;
public Form1()
{
InitializeComponent();
randomNumber = GenerateNumber(rangeNumberMin, rangeNumberMax);
}
private int GenerateNumber(int min,int max)
{
Random random = new Random();
return random.Next(min, max);
}
private void btnOk_Click(object sender, EventArgs e)
{
int yourNumber = 0;
Int32.TryParse(textBox1.Text.Trim(), out yourNumber);
if (yourNumber>= rangeNumberMin && yourNumber<=rangeNumberMax)
{
listBox1.Items.Add(yourNumber);
if (yourNumber > randomNumber)
{
listBox2.Items.Add("No the Magic Number is lower than your number");
}
if (yourNumber < randomNumber)
{
listBox2.Items.Add("No, the Magic Number is higher than your number");
}
if(yourNumber==randomNumber)
{
listBox2.Items.Add("You guessed the Magic Number!");
btnRestart.Enabled = true;
}
}
else
{
MessageBox.Show("Please enter a number between " + rangeNumberMin + " to " + rangeNumberMax);
}
}
private void btnRestart_Click(object sender, EventArgs e)
{
listBox2.Items.Clear();
listBox1.Items.Clear();
textBox1.Text = null;
randomNumber = GenerateNumber(rangeNumberMin, rangeNumberMax);
btnRestart.Enabled = false;
}
}
</code></pre>
http://stackoverflow.com/questions/976646/is-this-a-good-way-to-generate-a-string-of-random-characters2Is this a good way to generate a string of random characters?SkippyFire2009-06-10T16:15:47Z2009-06-10T16:24:52Z
<p>I found this snippet of code that generates a string of random characters:<br />
<a href="http://www.c-sharpcorner.com/UploadFile/mahesh/RandomNumber11232005010428AM/RandomNumber.aspx" rel="nofollow">http://www.c-sharpcorner.com/UploadFile/mahesh/RandomNumber11232005010428AM/RandomNumber.aspx</a></p>
<p>But is there a more elegant/faster/more reliable way to do this? This seems to rely on the fact that the numbers 26-91 are valid characters given the current encoding.</p>
<pre><code>/// <summary>
/// Generates a random string with the given length
/// </summary>
/// <param name="size">Size of the string</param>
/// <param name="lowerCase">If true, generate lowercase string</param>
/// <returns>Random string</returns>
private string RandomString(int size, bool lowerCase)
{
StringBuilder builder = new StringBuilder();
Random random = new Random();
char ch;
for(int i = 0; i < size; i++)
{
ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)));
builder.Append(ch);
}
if(lowerCase)
return builder.ToString().ToLower();
return builder.ToString();
}
</code></pre>
http://stackoverflow.com/questions/909454/generating-random-couples-in-c1Generating random couples in C#Sruly2009-05-26T07:51:40Z2009-05-26T10:04:42Z
<p>I have a table in my DB with a list of people. I need to create a list of random buddies every day.</p>
<p>The idea is that every day every person is paired with a differenct random person for that day.</p>
<p>Since the table may get very large I was wondering what would be the best way to do such a thing?</p>
<p>I have thought of 2 ideas but I am not so sure about them in regard to perf.</p>
<p>1) I use a random number generator to randomly pick two ids. The problem with that is that I have to constantly make sure the numbers weren't called yet and as I get close to the end of the list this can get real slow.</p>
<p>2) start every one off with the guy below then in the list and simply move down one every day until you get to the bottom at whcih point I move back to the top.</p>
<p>Any other ideas?</p>
<p>Thanks </p>
http://stackoverflow.com/questions/903924/random-values-from-db-in-c0random values from db in c#pier2009-05-24T14:52:19Z2009-05-24T15:27:41Z
<p>How can I retrive random random ItemIDs from the list of existing ItemIDs in ItemID column intge db, given below is the sqlcommand I've used.</p>
<pre><code>(SqlCommand RetrieveComm =new SqlCommand("SELECT * FROM item_k WHERE ItemID='" +intGetRequest+ "'", searchCon))
</code></pre>
<p>thanks,</p>
http://stackoverflow.com/questions/899528/how-to-run-a-script-at-random-intervals0How to run a script at random intervalsPbearne2009-05-22T19:15:05Z2009-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/565450/generate-a-number-of-ranges-for-a-random-set-of-values1Generate a number of ranges for a random set of valuesAndyD2009-02-19T14:06:41Z2009-05-17T12:00:01Z
<p>Given a set of random numeric values in a database, how do I generate a limited list of ranges where each range contains at least one value? The ranges should not overlap and ideally have a similar amount of values in them. Ideally their boundaries should also be multiples of 10, 100, 1000 etc...</p>
<p>For example:</p>
<pre>Values: 100,150,180,300,400,500,600,650,700
results in
4 ranges: 100-180(2), 180-300(1), 300-600(3), 600-800(3)</pre>
<p>How could this be done in C# or T-SQL?</p>
<p>Thanks</p>