gpt4 book ai didi

c# - 生成随机字符串

转载 作者:可可西里 更新时间:2023-11-01 03:02:43 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
c# random string generator

我需要生成一个给定长度的随机字符串。到目前为止,这是我的代码。问题是随机字符串每次都像“RRRRRR”或“SSSSS”一样的字母。就在我重新启动应用程序时,字母发生了变化。我需要类似“asrDvgDgREGd”的东西

    public string GenerateChar()
{
Random random = new Random();

return Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65))).ToString();
}

public string GenerateChar(int count)
{
string randomString = "";

for (int i = 0; i < count; i++)
{
nahodneZnaky += GenerateChar();
}

return randomString;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com