本文介绍了guid是否包含特殊字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用System.Guid.NewGuid()来创建新的唯一标识符。
它是否包含任何特殊字符,如'_'(下划线)?
提前致谢,
Pushkar
我尝试过:
I am using System.Guid.NewGuid() to create new unique identifier.
Does it contains any special character like '_' (underscore)?
Thanks in advance,
Pushkar
What I have tried:
int randomNumber = System.Guid.NewGuid();
是否有可能包含_(下划线) 。
Is there any possibility that it will contain "_"(underscore).
推荐答案
Guid newGuid = Guid.NewGuid();
Byte[] bytes = newGuid.ToByteArray();
// set break-point here, examine bytes
建议阅读:[]
这篇关于guid是否包含特殊字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!