高并发下获取随机字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高并发下获取随机字符串相关的知识,希望对你有一定的参考价值。
#region 获取随机字符串
//digit 最终返回的字符串的长度
public static string BuildCode(int digit)
{
StringBuilder resultCode = new StringBuilder();
Random ran = new Random(GetRandomSeed());
for (int i = 0; i < digit; i++)
{
resultCode.Append(("0123456789").Substring(ran.Next(0, 10), 1));
}
string resultCode1 = resultCode.ToString();
return resultCode1;
}
static int GetRandomSeed()
{
byte[] bytes = new byte[4];
System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RNGCryptoServiceProvider();
rng.GetBytes(bytes);
return BitConverter.ToInt32(bytes, 0);
}
#endregion
以上是关于高并发下获取随机字符串的主要内容,如果未能解决你的问题,请参考以下文章