[VB.NET]随机函数得到数字和字母组合

前端之家收集整理的这篇文章主要介绍了[VB.NET]随机函数得到数字和字母组合前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. PrivateSharedconstantAsChar()={"0"c,"1"c,"2"c,"3"c,"4"c,"5"c,"6"c,"7"c,"8"c,"9"c,"a"c,"b"c,"c"c,"d"c,"e"c,"f"c,"g"c,"h"c,"i"c,"j"c,"k"c,"l"c,"m"c,"n"c,"o"c,"p"c,"q"c,"r"c,"s"c,"t"c,"u"c,"v"c,"w"c,"x"c,"y"c,"z"c,"A"c,"B"c,"C"c,"D"c,"E"c,"F"c,"G"c,"H"c,"I"c,"J"c,"K"c,"L"c,"M"c,"N"c,"O"c,"P"c,"Q"c,"R"c,"S"c,"T"c,"U"c,"V"c,"W"c,"X"c,"Y"c,"Z"c}
  2. PrivateFunctionGenerateRandom(ByValLengthAsInteger)AsString
  3. DimnewRandomAsSystem.Text.StringBuilder=NewSystem.Text.StringBuilder(62)
  4. DimrdAsRandom=NewRandom
  5. DimiAsInteger=0
  6. Whilei<Length
  7. newRandom.Append(constant(rd.Next(62)))
  8. System.Math.Min(System.Threading.Interlocked.Increment(i),i-1)
  9. EndWhile
  10. ReturnnewRandom.ToString
  11. EndFunction
@H_111_403@ 原文链接:https://www.f2er.com/vb/264404.html

猜你在找的VB相关文章