2 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; }
3 references to SupportsBlockComment
Microsoft.CodeAnalysis.Features (3)
CommentSelection\AbstractCommentSelectionService.cs (3)
15=> SupportsBlockComment 16? new(supportsSingleLineComment: true, SupportsBlockComment, SingleLineCommentString, BlockCommentStartString, BlockCommentEndString) 17: new(supportsSingleLineComment: true, SupportsBlockComment, SingleLineCommentString, blockCommentStartString: "", blockCommentEndString: "");