From 33550b6470224da3b15064dc30d26d361ce6e207 Mon Sep 17 00:00:00 2001 From: Jose Perez Rodriguez Date: Thu, 15 Sep 2016 16:19:50 -0700 Subject: [PATCH] Adding new Split members with defaults Commit migrated from https://github.com/dotnet/coreclr/commit/90de022879851cbc1f30f82c70f1e4f8bcc51223 --- src/coreclr/src/mscorlib/ref/mscorlib.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/coreclr/src/mscorlib/ref/mscorlib.cs b/src/coreclr/src/mscorlib/ref/mscorlib.cs index f354f0e..56aeda0 100644 --- a/src/coreclr/src/mscorlib/ref/mscorlib.cs +++ b/src/coreclr/src/mscorlib/ref/mscorlib.cs @@ -3255,6 +3255,10 @@ 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, int count, System.StringSplitOptions options = (System.StringSplitOptions)(0)) { throw null; } + [System.Runtime.InteropServices.ComVisibleAttribute(false)] + public string[] Split(char separator, System.StringSplitOptions options = (System.StringSplitOptions)(0)) { throw null; } public string[] Split(params char[] separator) { throw null; } public string[] Split(char[] separator, int count) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] @@ -3262,6 +3266,10 @@ 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, int count, System.StringSplitOptions options = (System.StringSplitOptions)(0)) { throw null; } + [System.Runtime.InteropServices.ComVisibleAttribute(false)] + public string[] Split(System.String separator, System.StringSplitOptions options = (System.StringSplitOptions)(0)) { 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