.NET CIL Browser - Back to table of contents

Source file: SyntaxKind.cs

Files in SyntaxModel directory:

SourceParser.cs

SyntaxElement.cs

SyntaxElementDefinition.cs

SyntaxElementReader.cs

SyntaxKind.cs

SyntaxProvider.cs

/* CIL Browser (https://github.com/MSDN-WhiteKnight/CilBrowser)
 * Copyright (c) 2023,  MSDN.WhiteKnight 
 * License: BSD 3-Clause */
using System;

namespace CilBrowser.Core.SyntaxModel
{
    public enum SyntaxKind
    {
        Unknown = 0,
        TagStart = 1,
        TagEnd = 2
    }
}
View in source control

Back to table of contents


Generated by CIL Browser