《c#字符串篇》生成UUID的三种方法

生成UUID

三种不同方法

string result=  System.Guid.NewGuid().ToString();
string result = System.Guid.NewGuid().ToString("N");
string result = System.Guid.NewGuid().ToString().Replace("-", "");
posted @ 2023-04-20 10:06  Fusio  阅读(795)  评论(0编辑  收藏  举报