character of GUID?

  • Thread starter Thread starter Green
  • Start date Start date
G

Green

Hi, All
I want to know using System.Guid.NewGuid() to create a GUID what kind of
characters can be included? Does it allow *, / etc.

Thanks
 
alphanumeric characters, with '-' in between sets. There is a standard
format, create a new GUID and you will see where the '-' will appear.
 
A Guid is actually a 128-bit number. Its usual string representation is as
32 Hex characters (0-9 and a-f), with groups of characters spearated by
dashes.
 
Back
Top