We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
asp.net中,后台随机文件名生成时,实际随机数比配置多一位,随机中digit,最小值需要减去1,最大值使用digit本身值。
return rand.Next((int)Math.Pow(10, digit - 1),(int)Math.Pow(10, digit ));
The text was updated successfully, but these errors were encountered:
@heyunxu 可以提个pr修复么
Sorry, something went wrong.
您好。 实在抱歉,我尝试Fork代码并修复。 但是我发现并没有.cs的文件了。 所以我也不知道应该如何进行pr修复。 非常抱歉。
No branches or pull requests
asp.net中,后台随机文件名生成时,实际随机数比配置多一位,随机中digit,最小值需要减去1,最大值使用digit本身值。
return rand.Next((int)Math.Pow(10, digit - 1),(int)Math.Pow(10, digit ));
The text was updated successfully, but these errors were encountered: