Makes the all-0 pointer empty, like 00000000-0000-0000-0000-000000000000 .
var makeAllZeroGuID = new System.Guid();
or
var makeAllZeroGuID = System.Guid.Empty;
To make the actual guide with a unique meaning, what you probably want.
var uniqueGuID = System.Guid.NewGuid();
reza.cse08 Sep 06 '15 at 5:53 on 2015-09-06 05:53
source share