10 implementations of IsGeneric
Microsoft.CodeAnalysis (5)
CodeGen\ArrayMembers.cs (1)
325public bool IsGeneric => false;
Emit\EditAndContinue\DeletedMethodDefinition.cs (1)
85public bool IsGeneric => OldDefinition.IsGeneric;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
259bool Cci.IMethodReference.IsGeneric => _typeParameters.Length > 0;
Emit\NoPia\VtblGap.cs (1)
200bool Cci.IMethodReference.IsGeneric
PEWriter\RootModuleStaticConstructor.cs (1)
86public bool IsGeneric => false;
Microsoft.CodeAnalysis.CSharp (3)
Emitter\Model\ExpandedVarargsMethodReference.cs (1)
44bool Cci.IMethodReference.IsGeneric
Emitter\Model\MethodReference.cs (1)
50bool Cci.IMethodReference.IsGeneric
Emitter\Model\MethodSymbolAdapter.cs (1)
143bool Cci.IMethodReference.IsGeneric
Microsoft.CodeAnalysis.VisualBasic (2)
Emit\MethodReference.vb (1)
39Private ReadOnly Property IMethodReferenceIsGeneric As Boolean Implements Cci.IMethodReference.IsGeneric
Emit\MethodSymbolAdapter.vb (1)
110Private ReadOnly Property IMethodReferenceIsGeneric As Boolean Implements Cci.IMethodReference.IsGeneric
5 references to IsGeneric
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\DeletedMethodDefinition.cs (1)
85public bool IsGeneric => OldDefinition.IsGeneric;
PEWriter\MetadataVisitor.cs (1)
292if (method.IsGeneric)
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\ExpandedVarargsMethodReference.cs (1)
46get { return _underlyingMethod.IsGeneric; }
Microsoft.CodeAnalysis.VisualBasic (2)
Emit\MethodReference.vb (1)
39Private ReadOnly Property IMethodReferenceIsGeneric As Boolean Implements Cci.IMethodReference.IsGeneric
Emit\MethodSymbolAdapter.vb (1)
110Private ReadOnly Property IMethodReferenceIsGeneric As Boolean Implements Cci.IMethodReference.IsGeneric