10 lines
155 B
C#
10 lines
155 B
C#
namespace Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax;
|
|
|
|
internal enum XmlDocCommentLocation
|
|
{
|
|
Start = 0,
|
|
Interior = 1,
|
|
Exterior = 2,
|
|
End = 4
|
|
}
|