本文介绍了NewGuid VS System.Guid.NewGuid()的ToString(" D");的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有差异,当你生成 NewGuid()一个GUID使用。
VS System.Guid.NewGuid()的ToString(D );
或者他们是同样的事情
Is there a difference when you generate a GUID using NewGuid();
vs System.Guid.NewGuid().ToString("D");
or they are the same thing?
推荐答案
Guid.NewGuid()的ToString()
是字符串重新GUID,即presentation返回字符串
对象,而 Guid.NewGuid()
返回的Guid
数据类型。
Guid.NewGuid().ToString()
is string representation of GUID, i.e. returns string
object, while Guid.NewGuid()
returns Guid
datatype.
这篇关于NewGuid VS System.Guid.NewGuid()的ToString(" D");的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!