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