Skip to content

Commit

Permalink
Change argument order.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesqo committed Nov 23, 2016
1 parent 21b2c8d commit 90acd4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mscorlib/model.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
<Member Name="Empty&lt;T&gt;" />
<Member Name="Exists&lt;T&gt;(T[],System.Predicate&lt;T&gt;)" />
<Member Name="Fill&lt;T&gt;(T[],T)" />
<Member Name="Fill&lt;T&gt;(T[],System.Int32,System.Int32,T)" />
<Member Name="Fill&lt;T&gt;(T[],T,System.Int32,System.Int32)" />
<Member Name="Find&lt;T&gt;(T[],System.Predicate&lt;T&gt;)" />
<Member Name="FindAll&lt;T&gt;(T[],System.Predicate&lt;T&gt;)" />
<Member Name="FindIndex&lt;T&gt;(T[],System.Int32,System.Int32,System.Predicate&lt;T&gt;)" />
Expand Down
2 changes: 1 addition & 1 deletion src/mscorlib/src/System/Array.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ public static void Fill<T>(T[] array, T value)
}
}

public static void Fill<T>(T[] array, int startIndex, int count, T value)
public static void Fill<T>(T[] array, T value, int startIndex, int count)
{
if (array == null)
{
Expand Down

0 comments on commit 90acd4d

Please sign in to comment.