IronRuby.Builtins.RangeOps.CreateRange C# (CSharp) Method

CreateRange() private method

private CreateRange ( BinaryOpStorage comparisonStorage, RubyClass self, object begin, object end, [ excludeEnd ) : Range
comparisonStorage BinaryOpStorage
self RubyClass
begin object
end object
excludeEnd [
return Range
        public static Range/*!*/ CreateRange(BinaryOpStorage/*!*/ comparisonStorage, 
            RubyClass/*!*/ self, object begin, object end, [Optional]bool excludeEnd) {
            return new Range(comparisonStorage, self.Context, begin, end, excludeEnd);
        }