3 implementations of IsDelegate
Microsoft.CodeAnalysis (3)
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
46public bool IsDelegate => OldDefinition.IsDelegate;
Emit\NoPia\CommonEmbeddedType.cs (1)
366bool Cci.ITypeDefinition.IsDelegate
PEWriter\RootModuleType.cs (1)
133public bool IsDelegate
2 references to IsDelegate
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
46public bool IsDelegate => OldDefinition.IsDelegate;
PEWriter\InheritedTypeParameter.cs (1)
64get { return _inheritingType.IsInterface || _inheritingType.IsDelegate ? _parentParameter.Variance : TypeParameterVariance.NonVariant; }