Skip to content

Commit

Permalink
Add integer values in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
eNeRGy164 committed Sep 13, 2024
1 parent 2866a8e commit 511e43e
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/DendroDocs.Shared/Modifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ namespace DendroDocs;
[Flags]
public enum Modifier
{
Internal = 1 << 0,
Public = 1 << 1,
Private = 1 << 2,
Protected = 1 << 3,
Static = 1 << 4,
Abstract = 1 << 5,
Override = 1 << 6,
Readonly = 1 << 7,
Async = 1 << 8,
Const = 1 << 9,
Sealed = 1 << 10,
Virtual = 1 << 11,
Extern = 1 << 12,
New = 1 << 13,
Unsafe = 1 << 14,
Partial = 1 << 15,
Internal = 1 << 0, // 1
Public = 1 << 1, // 2
Private = 1 << 2, // 4
Protected = 1 << 3, // 8
Static = 1 << 4, // 16
Abstract = 1 << 5, // 32
Override = 1 << 6, // 64
Readonly = 1 << 7, // 128
Async = 1 << 8, // 256
Const = 1 << 9, // 512
Sealed = 1 << 10, // 1_024
Virtual = 1 << 11, // 2_048
Extern = 1 << 12, // 4_096
New = 1 << 13, // 8_192
Unsafe = 1 << 14, // 16_384
Partial = 1 << 15, // 32_768
}

0 comments on commit 511e43e

Please sign in to comment.