Am I looking too far to see something as simple as pick a number: 0 or 1?
Random rand = new Random();
if (rand.NextDouble() == 0)
{
lnkEvents.CssClass = "selected";
}
else
{
lnkNews.CssClass = "selected";
}
|
|
|||||
|
|
|
Random.Next picks a random integer between the lower bound (inclusive) and the upper bound (exclusive). |
||
|
|
If you want 50/50 probability, I suggest:
|
||
|
|
|
|
||||||
|
|
|
It seems like what you're wanting to do (choose between two values) is more clearly expressed by using the
The value produced is "greater than or equal to zero, and less than" |
||
|
|