dotnet-core/release-notes/3.0/preview/api-diff/preview6/3.0-preview6_System.md
William Godbe 89589fec4d
Add API diff between .NET Core 3.0 preview5 and preview6. (#2841)
* Add API diff between .NET Core 3.0 preview5 and preview6.

* Fix title in Standalon-packages.md file
2019-06-10 16:02:34 -07:00

893 B

System

 namespace System {
     public static class Environment {
+        public static long TickCount64 { get; }
     }
     public static class GC {
+        public static GCMemoryInfo GetGCMemoryInfo();
+        public static long GetTotalAllocatedBytes(bool precise = false);
     }
+    public readonly struct GCMemoryInfo {
+        public long FragmentedBytes { get; }
+        public long HeapSizeBytes { get; }
+        public long HighMemoryLoadThresholdBytes { get; }
+        public long MemoryLoadBytes { get; }
+        public long TotalAvailableMemoryBytes { get; }
+    }
     public abstract class StringComparer : IComparer, IComparer<string>, IEqualityComparer, IEqualityComparer<string> {
-        bool System.Collections.IEqualityComparer.Equals(object x, object y);

-        int System.Collections.IEqualityComparer.GetHashCode(object obj);

     }
 }