I need to generate a unique string that is 30 characters in length. At first, I was going to generate a GUID and just remove the first two characters.
Guid.NewGuid().ToString("N").Substring(2);
Will removing the two first characters have a significant effect on the "uniqueness"? Is it something that I should be worried about?
Is there a better way of generating a random 30 character string that will be guaranteed to be unique?