You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicenumCoffee{/// <summary>/// A regular filter coffee./// </summary>Black=1,/// <summary>/// A coffee with one or two espresso shots and topped with hot water./// </summary>Americano=2}
The documentation of the types is not included when generating the enum. I would expect something like this:
exportenumCoffee{/** * A regular filter coffee. */Black='Black',/** * A coffee with one or two espresso shots and topped with hot water. */Americano='Americano'}
The text was updated successfully, but these errors were encountered:
C# documentation on enums are missing.
An example:
The documentation of the types is not included when generating the enum. I would expect something like this:
The text was updated successfully, but these errors were encountered: