Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.42 KB

File metadata and controls

52 lines (36 loc) · 1.42 KB

DemoEnum Enum

Namespace: DemoProject
Assembly: DemoProject

An example of an user-defined enum meant

public enum DemoEnum
{
    Item1 = 0,
    Item2 = 1,
    AnotherItem = 2
}

Inheritance: object → ValueType → Enum → DemoEnum

Remarks

This page demonstrates how the generated documentation for structs looks like. The same layout is used for classes, structs, interfaces, and enums.

A more detailed description of type documentation can be seen in the documentation of DemoClass

In contrast to other kinds of types, the definition section for enum does include the list of possible values of the enum including the numeric value.

Another difference to other types is that for enum values, there won't be generated a separate page for every field

Fields

Name Description
AnotherItem Yet another enum value
Item1 Enum value "Item1"
Item2 Enum value "Item2"

See Also


Documentation generated by MdDocs