src\roslyn\src\Analyzers\CSharp\Analyzers\UseDeconstruction\CSharpUseDeconstructionDiagnosticAnalyzer.cs (1)
205.Select(s => s.Name)
Editing\SyntaxGenerator.cs (19)
194typeParameters: method.TypeParameters.Select(p => TypeParameter(p)),
195parameters: method.Parameters.Select(p => ParameterDeclaration(p)),
287parameters: method.Parameters.Select(p => ParameterDeclaration(p)),
453indexer.Parameters.Select(p => this.ParameterDeclaration(p)),
529var parameters = invoke?.Parameters.Select(p => this.ParameterDeclaration(p));
562constructorMethod.Parameters.Select(p => ParameterDeclaration(p)),
772type.TypeParameters.Select(TypeParameter),
776interfaceTypes: type.Interfaces.Select(TypeExpression),
781type.TypeParameters.Select(TypeParameter),
784interfaceTypes: type.Interfaces.Select(TypeExpression),
788type.TypeParameters.Select(TypeParameter),
790interfaceTypes: type.Interfaces.Select(TypeExpression),
802typeParameters: type.TypeParameters.Select(TypeParameter),
803parameters: invoke.Parameters.Select(p => ParameterDeclaration(p)),
810typeParameters: type.TypeParameters.Select(TypeParameter),
917declaration = WithTypeParameters(declaration, typeParameters.Select(tp => TypeParameter(tp)));
928types: tp.ConstraintTypes.Select(TypeExpression));
1077var args = attribute.ConstructorArguments.Select(a => this.AttributeArgument(this.TypedConstantExpression(a)))
1078.Concat(attribute.NamedArguments.Select(n => this.AttributeArgument(n.Key, this.TypedConstantExpression(n.Value))))