欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

生成秘钥方式之一

程序员文章站 2022-10-27 19:39:29
public static string Secretkey() { var Secretkey = Guid.NewGuid().ToString("N") .Remove(25, 1) .Remove(23, 1) .Remove(20, 1) .Remove(18, 1) .Remove(15 ......

public static string Secretkey()
{
var Secretkey = Guid.NewGuid().ToString("N")
.Remove(25, 1)
.Remove(23, 1)
.Remove(20, 1)
.Remove(18, 1)
.Remove(15, 1)
.Remove(13, 1)
.Remove(3, 1)
.Remove(1, 1);
return Secretkey;
}