Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2018-09-19 10:54:39 +0300
committerMarek Safar <marek.safar@gmail.com>2018-09-19 10:54:39 +0300
commitd8bc0e641243c92fed1d3b914565a8e2b99253b8 (patch)
treeaece9461d34495ed751339663fd69a60faeb9307
parent2b3a7ff02e349d36983d9c32c1de2b8f7b6e8da0 (diff)
Hide Span from public APIsmono-2018-04
-rw-r--r--src/System.Private.CoreLib/src/System/String.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/src/System/String.cs b/src/System.Private.CoreLib/src/System/String.cs
index a10d212c0..a37d15f5b 100644
--- a/src/System.Private.CoreLib/src/System/String.cs
+++ b/src/System.Private.CoreLib/src/System/String.cs
@@ -376,7 +376,7 @@ namespace System
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern String(ReadOnlySpan<char> value);
+ internal extern String(ReadOnlySpan<char> value);
[DependencyReductionRoot]
private unsafe static string Ctor(ReadOnlySpan<char> value)