If I create a GUID using the constructor (say, Guid myGuid = new Guid("myguid")
), is there a higher chance that it would collide with a GUIDs created with Guid.NewGuid()
vs. two GUIDs both created with Guid.NewGuid()
?
EDIT:
More specific question: Is there a greater chance to collide when comparing GUIDs based on a hash vs "Guid.NewGuid()?