From 9b116a74b222a2ffb14528f65b400fdafda71a53 Mon Sep 17 00:00:00 2001 From: Jose Perez Rodriguez Date: Thu, 15 Sep 2016 14:49:47 -0700 Subject: [PATCH] Remove unwanted String.Split methods from Reference assembly --- src/mscorlib/ref/mscorlib.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/mscorlib/ref/mscorlib.cs b/src/mscorlib/ref/mscorlib.cs index c73d577..f354f0e 100644 --- a/src/mscorlib/ref/mscorlib.cs +++ b/src/mscorlib/ref/mscorlib.cs @@ -3255,12 +3255,6 @@ namespace System [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)] @@ -3268,12 +3262,6 @@ namespace System [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; } -- 2.7.4