Base:
property
IsGenericMethod
Microsoft.CodeAnalysis.CSharp.Symbols.MethodSymbol.IsGenericMethod
4 references to IsGenericMethod
Microsoft.CodeAnalysis.CSharp (4)
Symbols\Metadata\PE\PEMethodSymbol.cs (3)
965
public override ImmutableArray<TypeWithAnnotations> TypeArgumentsWithAnnotations =>
IsGenericMethod
? GetTypeParametersAsTypeArguments() : ImmutableArray<TypeWithAnnotations>.Empty;
1146
if (this.ReturnsVoid || this.
IsGenericMethod
|| this.IsVararg || this.ParameterCount != parameterCount || this.IsParams())
1182
if (!this.ReturnsVoid || this.
IsGenericMethod
|| this.IsVararg || this.ParameterCount != parameterCount || this.IsParams())
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
431
if (methodSymbol.
IsGenericMethod
||