Is there any way to randomise boolean values using the Random method, It's no problem with integers but I need to randomise booleans??
Random RandomClass = new Random();
int x = RandomClass.Next(32, 64);
Thanks in Advance
Roy.