dotnet-core/release-notes/3.0/api-diff/3.0.0_System.Runtime.md
2019-09-23 13:07:54 -07:00

530 B

System.Runtime

 namespace System.Runtime {
+    public sealed class AmbiguousImplementationException : Exception {
+        public AmbiguousImplementationException();
+        public AmbiguousImplementationException(string message);
+        public AmbiguousImplementationException(string message, Exception innerException);
+    }
+    public static class ProfileOptimization {
+        public static void SetProfileRoot(string directoryPath);
+        public static void StartProfile(string profile);
+    }
 }