1 implementation of IsCastExpression
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1342
public bool
IsCastExpression
([NotNullWhen(true)] SyntaxNode? node)
2 references to IsCastExpression
Microsoft.CodeAnalysis.CodeStyle (1)
src\Analyzers\Core\Analyzers\UseNullPropagation\AbstractUseNullPropagationDiagnosticAnalyzer.cs (1)
402
if (syntaxFacts.
IsCastExpression
(node))
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Analyzers\Core\CodeFixes\AddExplicitCast\AbstractAddExplicitCastCodeFixProvider.cs (1)
140
if (syntaxFacts.
IsCastExpression
(targetNode) || syntaxFacts.IsConversionExpression(targetNode))