up vote 12 down vote favorite
share [g+] share [fb]

Why are there dashes in a .NET GUID? Are there dashes in most implementations of a GUID, or is it just a Microsoft thing?

Signed,

741ecf77-9c92-4435-8e6b-85975bd13452

link|improve this question

71% accept rate
Interesting question. I must say that I've never stopped to think about it. – Jason Baker Jan 6 '09 at 16:18
feedback

protected by casperOne Sep 11 '11 at 22:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

5 Answers

up vote 24 down vote accepted

Technically, there are no "dashes" in a GUID. A GUID is a 128-bit value which is usually stored in the following manner (using C# here to represent the structure):

public struct Guid
{
  public ulong Data1;
  public ushort Data2;
  public ushort Data3;
  public fixed byte Data4[8];
}

The dashes are in the string representation of a GUID, usually placed at the points that would delimit the structure according to the above representation in memory.

The dashes are optional and are not required in a string representation of a GUID.

link|improve this answer
feedback

It's just a convenience.

http://en.wikipedia.org/wiki/GUID

link|improve this answer
feedback

This is an example of chunking, just like phone numbers, credit card numbers, etc.

Here is a good Wikipedia article about it.

link|improve this answer
feedback

Just about every visual represenation of a guid that I've seen uses the dashed format. It's much easier on the eyes.

link|improve this answer
feedback

The Guid class of .NET recognizes a bunch of different formats: dashes as separators, no separators, brackets as delimiters, parenthesis as delimiters, no delimiters, etc

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.