Files
2026-08-27 10:56:38 -06:00

10 lines
155 B
C#

namespace Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax;
internal enum XmlDocCommentLocation
{
Start = 0,
Interior = 1,
Exterior = 2,
End = 4
}