0
kicks
creating GUIDs in .net
A guid in the .net world is represented by the System.Guid class. The Guid class has many constructors which takes 0 or more arguments and constructs a
guid from it. However, if we want to create a random guid, using the parameter less constructor would not do. A guid created using the parameter less constructor
contains all zeros. So how to create a unique guid?