1
0
mirror of synced 2026-01-29 03:00:08 -05:00

moving apidiff out of preview (#3595)

This commit is contained in:
Anirudh Agnihotry
2019-10-10 13:57:00 -07:00
committed by GitHub
parent bc827f2b64
commit 58b0c128d2
325 changed files with 5 additions and 10878 deletions

View File

@@ -0,0 +1,16 @@
# System.Runtime
``` diff
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);
+ }
}
```