333
This commit is contained in:
33
FrameWork/SqlSugar/Utilities/UtilRandom.cs
Normal file
33
FrameWork/SqlSugar/Utilities/UtilRandom.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace SqlSugar
|
||||
{
|
||||
public class UtilRandom
|
||||
{
|
||||
public static Random Random = new Random();
|
||||
public static int GetRandomIndex(Dictionary<int, int> pars)
|
||||
{
|
||||
int maxValue = 0;
|
||||
foreach (var item in pars)
|
||||
{
|
||||
maxValue += item.Value;
|
||||
}
|
||||
var num = Random.Next(1, maxValue);
|
||||
var result = 0;
|
||||
var endValue = 0;
|
||||
foreach (var item in pars)
|
||||
{
|
||||
var index = pars.ToList().IndexOf(item);
|
||||
var beginValue = index == 0 ? 0 : pars[index - 1];
|
||||
endValue += item.Value;
|
||||
result = item.Key;
|
||||
if (num >= beginValue && num <= endValue)
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user