When I click a button a string should appear as output ex. good morning or good afternoon. How can I use C# to randomly select the string to display?
feedback
|
migrated from serverfault.com Sep 9 '09 at 7:25
This question came from our site for system administrators and desktop support professionals.
|
It has been a couple of years (3-4) since I have been programming with C# but isn't this simple & elegant enough:
You should also check if the input array is not | ||||
|
feedback
|
|
You can define an extension method to pick a random element of any
Usage:
The nice thing here is that | |||
|
feedback
|
|
Try this,
All you need is a string array and a random number to pull a value from the array. | |||
|
feedback
|