Imported Upstream version 5.18.0.161

Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-10-19 08:34:24 +00:00
parent 37fbf886a3
commit e19d552987
28702 changed files with 3868076 additions and 803 deletions

View File

@@ -243,7 +243,7 @@ namespace System
if (newError == null)
throw new ArgumentNullException ("newError");
stderr = newError;
stderr = TextWriter.Synchronized (newError);
}
[SecurityPermission (SecurityAction.Demand, UnmanagedCode = true)]
@@ -252,7 +252,7 @@ namespace System
if (newIn == null)
throw new ArgumentNullException ("newIn");
stdin = newIn;
stdin = TextReader.Synchronized (newIn);
}
[SecurityPermission (SecurityAction.Demand, UnmanagedCode = true)]
@@ -261,7 +261,7 @@ namespace System
if (newOut == null)
throw new ArgumentNullException ("newOut");
stdout = newOut;
stdout = TextWriter.Synchronized (newOut);
}
public static void Write (bool value)