1 implementation of ReturnType
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
78public override Type ReturnType => typeof(bool);
6 references to ReturnType
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (6)
265Debug.Assert(action.ReturnType == typeof(object)); 266return Expression.Block(binding, Expression.Default(action.ReturnType)); 272if (binding.Type.IsValueType && !action.ReturnType.IsValueType) 274Debug.Assert(action.ReturnType == typeof(object)); 275return Expression.Convert(binding, action.ReturnType); 295return action.ReturnType;