Skip to content

Commit

Permalink
Remove unwanted String.Split methods from Reference assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
joperezr committed Sep 15, 2016
1 parent 393b0a8 commit 9b116a7
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/mscorlib/ref/mscorlib.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3255,25 +3255,13 @@ public void CopyTo(int sourceIndex, char[] destination, int destinationIndex, in
[System.Security.SecuritySafeCriticalAttribute]
public System.String Replace(char oldChar, char newChar) { throw null; }
public System.String Replace(System.String oldValue, System.String newValue) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(char separator) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(char separator, int count, System.StringSplitOptions options) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(char separator, System.StringSplitOptions options) { throw null; }
public string[] Split(params char[] separator) { throw null; }
public string[] Split(char[] separator, int count) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(char[] separator, int count, System.StringSplitOptions options) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(char[] separator, System.StringSplitOptions options) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(System.String separator) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(System.String separator, int count, System.StringSplitOptions options) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(System.String separator, System.StringSplitOptions options) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(string[] separator, int count, System.StringSplitOptions options) { throw null; }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
public string[] Split(string[] separator, System.StringSplitOptions options) { throw null; }
Expand Down

0 comments on commit 9b116a7

Please sign in to comment.