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:
Diffstat (limited to 'src/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshal.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshal.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshal.cs b/src/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshal.cs
index 5af9ce674..00b7449da 100644
--- a/src/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshal.cs
+++ b/src/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshal.cs
@@ -12,12 +12,12 @@ namespace System.Runtime.InteropServices
/// </summary>
internal class Marshal
{
- public static unsafe String PtrToStringUni(IntPtr ptr, int len)
+ public static unsafe string PtrToStringUni(IntPtr ptr, int len)
{
return PInvokeMarshal.PtrToStringUni(ptr, len);
}
- public static unsafe String PtrToStringUni(IntPtr ptr)
+ public static unsafe string PtrToStringUni(IntPtr ptr)
{
return PInvokeMarshal.PtrToStringUni(ptr);
}