Working with GUIDs

How many times do you need to represent something with a unique identifier? Probably very often. Examples are items with the same name but different characteristics. The .NET Framework enables you to create unique identifiers via the System.Guid structure (which is a value type). This lets you generate a unique 128-bit string as an identifier. To generate a unique identifier, you invoke the Guid.NewGuid method, which works as follows:

'Declaring a GuidDim uniqueIdentifier As Guid'A unique identifieruniqueIdentifier = Guid.NewGuidConsole.WriteLine(uniqueIdentifier.ToString)'Another unique identifier,'although to the same variableuniqueIdentifier = Guid.NewGuidConsole.WriteLine(uniqueIdentifier.ToString) ...

Get Visual Basic 2015 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.