myVariable(int) == 0 与 myVariable(Guid) == Guid.Empty 相同
我最近将一堆表 PK 从 int
转换为 uniqueidentifier
。现在,在我的代码中,我正在替换某些检查,如下所示:
if (planDiagnosisID != 0)
其中
if (planDiagnosisID != Guid.Empty)
planDiagnosisID 是第一个中的 int
和第二个中的 Guid
。
这准确吗?
I recently converted a bunch of tables PK's from int
to uniqueidentifier
. Now in my code I am replacing certain checks like so:
if (planDiagnosisID != 0)
with
if (planDiagnosisID != Guid.Empty)
Where planDiagnosisID is an int
in the first one and a Guid
in the second.
Is this accurate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是正确的。 Guid.Empty 是 Guid 的默认值。它是一个值类型,因此不能为
null
。或者在代码中
就像
Yes that is correct. Guid.Empty is the default value for Guid. It is a value type, so it can't be
null
.Or in code
Just as