Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为我正在运行的软件的所有实例设置一个唯一的 ID。在我的代码中获取此类 ID 的最佳方法是什么?
您可以使用全局唯一标识符
var id = Guid.NewId();
如果没有更多信息,我可以给出的最简单的解决方案是Guid uniqueId = Guid.NewGuid().
Guid uniqueId = Guid.NewGuid()
要做出明智的决定,您需要知道: