5 implementations of IsGenericMethod
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationAbstractMethodSymbol.cs (1)
81public virtual bool IsGenericMethod => this.Arity > 0;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PublicModel\MethodSymbol.cs (1)
225bool IMethodSymbol.IsGenericMethod
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedMethodSymbol.cs (1)
52public bool IsGenericMethod => _symbol.IsGenericMethod;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\MethodSymbol.vb (1)
1079Private ReadOnly Property IMethodSymbol_IsGenericMethod As Boolean Implements IMethodSymbol.IsGenericMethod
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationAbstractMethodSymbol.cs (1)
81public virtual bool IsGenericMethod => this.Arity > 0;
15 references to IsGenericMethod
Microsoft.CodeAnalysis (1)
Symbols\ISymbolExtensions.cs (1)
25if (!reducedFrom.IsGenericMethod)
Microsoft.CodeAnalysis.CSharp.Features (1)
SignatureHelp\InvocationExpressionSignatureHelpProvider.cs (1)
114if (currentSymbol?.IsGenericMethod == true)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (3)
Semantics\NativeIntegerTests.cs (1)
321if (method.IsGenericMethod)
Semantics\OperatorTests.cs (2)
7649Assert.False(symbol1.IsGenericMethod); 8423Assert.False(symbol1.IsGenericMethod);
Microsoft.CodeAnalysis.Features (5)
IntroduceParameter\IntroduceParameterDocumentRewriter.cs (1)
438var memberName = _methodSymbol.IsGenericMethod
MetadataAsSource\AbstractMetadataAsSourceService.WrappedMethodSymbol.cs (1)
52public bool IsGenericMethod => _symbol.IsGenericMethod;
ReplaceMethodWithProperty\ReplaceMethodWithPropertyCodeRefactoringProvider.cs (2)
120!getMethod.IsGenericMethod && 152!setMethod.IsGenericMethod &&
SignatureHelp\AbstractSignatureHelpProvider.cs (1)
275if (symbol is IMethodSymbol methodSymbol && methodSymbol.IsGenericMethod && methodSymbol != methodSymbol.OriginalDefinition)
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\MethodSymbol.vb (1)
1079Private ReadOnly Property IMethodSymbol_IsGenericMethod As Boolean Implements IMethodSymbol.IsGenericMethod
Microsoft.CodeAnalysis.VisualBasic.Features (1)
SignatureHelp\InvocationExpressionSignatureHelpProvider.vb (1)
92If matchedMethodSymbol IsNot Nothing AndAlso matchedMethodSymbol.IsGenericMethod Then
Microsoft.CodeAnalysis.Workspaces (1)
Shared\Extensions\SyntaxGeneratorExtensions.cs (1)
560var memberName = method.IsGenericMethod
Microsoft.VisualStudio.LanguageServices.CSharp (1)
ObjectBrowser\DescriptionBuilder.cs (1)
236if (methodSymbol.IsGenericMethod)
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\ExternalElements\ExternalCodeFunction.cs (1)
110get { return MethodSymbol.IsGenericMethod; }