2 overrides of GetTryFinallyStatements
Microsoft.CodeAnalysis.CSharp.Features (1)
IntroduceUsingStatement\CSharpIntroduceUsingStatementCodeRefactoringProvider.cs (1)
32protected override (SyntaxList<StatementSyntax> tryStatements, SyntaxList<StatementSyntax> finallyStatements) GetTryFinallyStatements(TryStatementSyntax tryStatement)
Microsoft.CodeAnalysis.VisualBasic.Features (1)
IntroduceUsingStatement\VisualBasicIntroduceUsingStatementCodeRefactoringProvider.vb (1)
29Protected Overrides Function GetTryFinallyStatements(tryStatement As TryBlockSyntax) As (SyntaxList(Of StatementSyntax), SyntaxList(Of StatementSyntax))
1 reference to GetTryFinallyStatements
Microsoft.CodeAnalysis.Features (1)
IntroduceUsingStatement\AbstractIntroduceUsingStatementCodeRefactoringProvider.cs (1)
201(tryStatements, var finallyStatements) = GetTryFinallyStatements(tryStatement);