1 implementation of AddressOfExpression
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
93
public int
AddressOfExpression
=> (int)SyntaxKind.AddressOfExpression;
2 references to AddressOfExpression
Microsoft.CodeAnalysis.Features (2)
src\Analyzers\Core\CodeFixes\GenerateMember\AbstractGenerateMemberService.cs (1)
172
if (expression.Parent?.RawKind == syntaxFacts.SyntaxKinds.
AddressOfExpression
&&
src\Analyzers\Core\CodeFixes\GenerateVariable\AbstractGenerateVariableService.State.cs (1)
441
if (syntaxKinds.
AddressOfExpression
== SimpleNameOrMemberAccessExpressionOpt.Parent?.RawKind)