Enum Specifier
This enum represents each .NET Guid format variation.
Namespace: Primitively
Assembly: Primitively.Abstractions.dll
Syntax
public enum Specifier
Fields
Name | Description |
---|---|
B | Represents a GUID format that consists of 38 characters separated by hyphens, enclosed in braces. For example: {2c48c152-7cb7-4f51-8f01-704454f36e60} |
D | Represents a GUID format that consists of 36 characters separated by hyphens. This is the default format. For example: 2c48c152-7cb7-4f51-8f01-704454f36e60 |
N | Represents a GUID format that consists of 32 characters. For example: 2c48c1527cb74f518f01704454f36e60 |
P | Represents a GUID format that consists of 38 characters separated by hyphens, enclosed in parentheses. For example: (2c48c152-7cb7-4f51-8f01-704454f36e60) |
X | Represents a GUID format that consists of 68 characters comprised of four hexadecimal values enclosed in braces, where the fourth value is a subset of eight hexadecimal values that is also enclosed in braces. For example: {0x2c48c152,0x7cb7,0x4f51,{0x8f,0x01,0x70,0x44,0x54,0xf3,0x6e,0x60}} |