Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #438 from iskiselev/RemoveRangeFix
Browse files Browse the repository at this point in the history
List.RemoveRange signature fixed.
  • Loading branch information
kg committed Apr 25, 2014
2 parents bd5c9f6 + a632813 commit b171359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/JSIL.Bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ $jsilcore.$ListExternals = function ($, T, type) {
);

$.Method({Static:false, Public:true }, "RemoveRange",
new JSIL.MethodSignature(null, [mscorlib.TypeRef("System.Int32")], []),
new JSIL.MethodSignature(null, [mscorlib.TypeRef("System.Int32"), mscorlib.TypeRef("System.Int32")], []),
function (index, count) {
if (index < 0)
throw new System.ArgumentOutOfRangeException("index");
Expand Down

0 comments on commit b171359

Please sign in to comment.