using System;
using System.Collections.Generic;
namespace TradeHelp.Utilities
{
///
///
///
public static class RandomHelper
{
private static readonly Random _random = new Random(DateTime.Now.Millisecond);
///
///
///
///
///
///
public static int GetRandom(int min, int max)
{
return _random.Next(min, max);
}
}
}