Microsoft.CSharp.RuntimeBinder.Semantics.CType.isDelegateType C# (CSharp) Method

isDelegateType() public method

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

Usage Example

Exemplo n.º 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