How does System.Guid.NewGuid() know that the values it generates are unique, for example when i use in a loop?
Does it internally store data somewhere? .
How does System.Guid.NewGuid() know that the values it generates are unique, for example when
Share
No, it uses pseudo-random numbers. See the description of the algorithm at Wikipedia.