I need to create a unique string 30 characters long. At first, I was going to generate a GUID and just delete the first two characters.
Guid.NewGuid().ToString("N").Substring(2);
Will the removal of the first two characters significantly affect the "uniqueness"? Is this something I should worry about?
Is there a better way to generate a random 30 character string that is guaranteed to be unique?
guid
harmony
source share