2 implementations of CommentStart
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
SplitComment\CSharpSplitCommentService.cs (1)
21public string CommentStart => "//";
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (1)
SplitComment\VisualBasicSplitCommentService.vb (1)
19Public ReadOnly Property CommentStart As String Implements ISplitCommentService.CommentStart
4 references to CommentStart
Microsoft.CodeAnalysis.EditorFeatures (3)
SplitComment\SplitCommentCommandHandler.cs (3)
118var commentStart = service.CommentStart; 162if (selectionSpan.Start < (trivia.SpanStart + splitCommentService.CommentStart.Length)) 192return MatchesCommentStart(splitCommentService.CommentStart, point);
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (1)
SplitComment\VisualBasicSplitCommentService.vb (1)
19Public ReadOnly Property CommentStart As String Implements ISplitCommentService.CommentStart