using PipServices3.Commons.Random;
namespace ExampleApp
{
class Program
{
static void Main(string[] args)
{
var value1 = RandomArray.Pick(new int[] { 1, 2, 3, 4 }); // Possible result: 3
}
}
}
using PipServices3.Commons.Random;
namespace ExampleApp
{
class Program
{
static void Main(string[] args)
{
var value1 = RandomArray.Pick(new int[] { 1, 2, 3, 4 }); // Possible result: 3
}
}
}