本文介绍了.NET短唯一标识符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要.NET中的唯一标识符(不能使用GUID,因为在这种情况下它太长了。)

I need a unique identifier in .NET (cannot use GUID as it is too long for this case).

人们是否认为该算法使用了是不错的候选人,或者您有还有其他建议吗?

Do people think that the algorithm used here is a good candidate or do you have any other suggestions?

推荐答案

这是一个不错的建议-

This one a good one - http://www.singular.co.nz/blog/archive/2007/12/20/shortguid-a-shorter-and-url-friendly-guid-in-c-sharp.aspx

以及此处

您可以使用Base64:

You could use Base64:

string base64Guid = Convert.ToBase64String(Guid.NewGuid().ToByteArray());



这篇关于.NET短唯一标识符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 16:40