Implemented interface member:
property
IsAbstract
Microsoft.Cci.ITypeDefinition.IsAbstract
3 references to IsAbstract
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Synthesized\SynthesizedPrivateImplementationDetailsType.cs (3)
72
public override bool IsStatic => _privateImplementationDetails.IsSealed && _privateImplementationDetails.
IsAbstract
;
74
public override bool IsAbstract => _privateImplementationDetails.
IsAbstract
&& !_privateImplementationDetails.IsSealed;
76
public override bool IsSealed => _privateImplementationDetails.IsSealed && !_privateImplementationDetails.
IsAbstract
;