1
0
mirror of synced 2026-01-29 03:00:08 -05:00
Files
core/release-notes/1.1/1.0-1.1-api-diff/1.0-1.1-api-diff_System.Runtime.InteropServices.md
2016-10-24 09:57:44 -07:00

473 B
Executable File

System.Runtime.InteropServices

 namespace System.Runtime.InteropServices {
     public static class Marshal {
+        public static string PtrToStringUTF8(IntPtr ptr);
+        public static string PtrToStringUTF8(IntPtr ptr, int byteLen);
+        public static IntPtr StringToCoTaskMemUTF8(string s);
+        public static void ZeroFreeCoTaskMemUTF8(IntPtr s);
     }
     public enum UnmanagedType {
+        LPUTF8Str = 48,
     }
 }