This documentation is archived and is not being maintained.

Enumeration Format Strings

You can use the Enum::ToString method to create a new string object that represents the numeric, hexadecimal, or string value of an enumeration member. This method takes one of the enumeration formatting strings to specify the value that you want returned.

The following table lists the enumeration formatting strings and the values they return. These format specifiers are not case-sensitive.

Format string

Result

G or g

Displays the enumeration entry as a string value, if possible, and otherwise displays the integer value of the current instance. If the enumeration is defined with the Flags attribute set, the string values of each valid entry are concatenated together, separated by commas. If the Flags attribute is not set, an invalid value is displayed as a numeric entry. The following example illustrates the G format specifier.

No code example is currently available or this language may not be supported.

F or f

Displays the enumeration entry as a string value, if possible. If the value can be completely displayed as a summation of the entries in the enumeration (even if the Flags attribute is not present), the string values of each valid entry are concatenated together, separated by commas. If the value cannot be completely determined by the enumeration entries, then the value is formatted as the integer value. The following example illustrates the F format specifier.

No code example is currently available or this language may not be supported.

D or d

Displays the enumeration entry as an integer value in the shortest representation possible. The following example illustrates the D format specifier.

No code example is currently available or this language may not be supported.

X or x

Displays the enumeration entry as a hexadecimal value. The value is represented with leading zeros as necessary, to ensure that the value is a minimum eight digits in length. The following example illustrates the X format specifier.

No code example is currently available or this language may not be supported.

The following example defines an enumeration called Colors that consists of three entries: Red, Blue, and Green.

No code example is currently available or this language may not be supported.

After the enumeration is defined, an instance can be declared in the following manner.

No code example is currently available or this language may not be supported.

The Color.ToString(System.String) method can then be used to display the enumeration value in different ways, depending on the format specifier passed to it.

No code example is currently available or this language may not be supported.
Show: