문제

How to create a Guid that all of its elements are zero. i.e. {00000000-0000-0000-0000-000000000000}. I could use:

Guid.Parse("{00000000-0000-0000-0000-000000000000}")

But is there any easier method for that ?

도움이 되었습니까?

해결책

As simple as this:

var guid = Guid.Empty;

다른 팁

Just create a new Guid

var guid = new Guid();

I know this is old, but this also works:

Guid guid;

Just to make sure PowerShell is here:

> [Guid]::Empty

Guid
----
00000000-0000-0000-0000-000000000000
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top