IronRuby.Runtime.BlockParam.YieldSplat C# (CSharp) Method

YieldSplat() public method

public YieldSplat ( IList args, object &blockResult ) : bool
args IList
blockResult object
return bool
        public bool YieldSplat(IList/*!*/ args, out object blockResult) {
            return BlockJumped(blockResult = RubyOps.YieldSplat0(args, null, Self, this));
        }