In C#, we know that Guid data is unique for a given machine. Will Guid.toString( ) also be unique for a given machine?
In C#, we know that Guid data is unique for a given machine. Will
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well
Guid.ToString()represents all the data within aGuid– so if there are two non-equalGuidvalues, callingToString()on each of them will give two non-equal strings too. Is that what you wanted to know?