《c#字符串篇》生成UUID的三种方法
生成UUID
三种不同方法
string result= System.Guid.NewGuid().ToString();
string result = System.Guid.NewGuid().ToString("N");
string result = System.Guid.NewGuid().ToString().Replace("-", "");
三种不同方法
string result= System.Guid.NewGuid().ToString();
string result = System.Guid.NewGuid().ToString("N");
string result = System.Guid.NewGuid().ToString().Replace("-", "");