4 implementations of IsDelegate
Microsoft.CodeAnalysis (4)
CodeGen\PrivateImplementationDetails.cs (1)
1054public bool IsDelegate => false;
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
46public bool IsDelegate => OldDefinition.IsDelegate;
Emit\NoPia\CommonEmbeddedType.cs (1)
367bool Cci.ITypeDefinition.IsDelegate
PEWriter\RootModuleType.cs (1)
135public bool IsDelegate
2 references to IsDelegate
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
46public bool IsDelegate => OldDefinition.IsDelegate;
PEWriter\InheritedTypeParameter.cs (1)
63get { return _inheritingType.IsInterface || _inheritingType.IsDelegate ? _parentParameter.Variance : TypeParameterVariance.NonVariant; }