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