Microsoft.CSharp.RuntimeBinder.Semantics.CType.isDelegateType C# (CSharp) Méthode

isDelegateType() public méthode

public isDelegateType ( ) : bool
Résultat bool
        public bool isDelegateType()
        {
            return (IsAggregateType() && getAggregate().IsDelegate());
        }

Usage Example

Exemple #1
0
 public ExprBoundLambda(CType type, Scope argumentScope)
     : base(ExpressionKind.BoundLambda, type)
 {
     Debug.Assert(type == null || type.isDelegateType());
     Debug.Assert(argumentScope != null);
     ArgumentScope = argumentScope;
 }
All Usage Examples Of Microsoft.CSharp.RuntimeBinder.Semantics.CType::isDelegateType