Software Development Network>> Visual C#>> Does C# provide any unique identifier function?
The System.Guid class in the framework provides a NewGuid() method that will generate a unique identifier for you:
Does C# provide any unique identifier function?
Patrick in Canada
The System.Guid class in the framework provides a NewGuid() method that will generate a unique identifier for you:
System.Guid myUniqueIdentifier = System.Guid.NewGuid();
Best regards,
Johan Stenberg