3 overrides of SupportsBlockComment
Microsoft.CodeAnalysis.CSharp.Features (1)
CommentSelection\CSharpCommentSelectionService.cs (1)
24public override bool SupportsBlockComment => true;
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
CommentSelection\CommentUncommentSelectionCommandHandlerTests.cs (1)
39public override bool SupportsBlockComment { get; }
Microsoft.CodeAnalysis.VisualBasic.Features (1)
CommentSelection\VisualBasicCommentSelectionService.vb (1)
21Public Overrides ReadOnly Property SupportsBlockComment As Boolean
3 references to SupportsBlockComment
Microsoft.CodeAnalysis.Features (3)
CommentSelection\AbstractCommentSelectionService.cs (3)
24=> SupportsBlockComment 25? new(supportsSingleLineComment: true, SupportsBlockComment, SingleLineCommentString, BlockCommentStartString, BlockCommentEndString) 26: new(supportsSingleLineComment: true, SupportsBlockComment, SingleLineCommentString, blockCommentStartString: "", blockCommentEndString: "");