发布网友
共1个回答
热心网友
order by Rnd(" + GetRandom() + "-ID)";
private int GetRandom()
{
if (_RandomSeed == int.MaxValue)
_RandomSeed = 1;
Random r = new Random(_RandomSeed++);
return r.Next(0, 100);
}