dotnet-core/release-notes/3.0/preview/api-diff/preview1/3.0-preview1_System.Globalization.md
Ahson Khan e6b9c28c28
Add API diff between .NET Core 2.2 and .NET Core 3.0 preview1. (#2256)
* Add API diff between .NET Core 2.2 and .NET Core 3.0 preview1.

* Only compare ref assemblies within M.NetCore.App rather than all impl
assemblies from the repo.

* Remove Microsoft.* namespaces and update heading.
2019-01-28 21:02:57 -08:00

623 B

System.Globalization

 namespace System.Globalization {
     public class CompareInfo : IDeserializationCallback {
+        public int GetHashCode(ReadOnlySpan<char> source, CompareOptions options);
     }
+    public static class ISOWeek {
+        public static int GetWeekOfYear(DateTime date);
+        public static int GetWeeksInYear(int year);
+        public static int GetYear(DateTime date);
+        public static DateTime GetYearEnd(int year);
+        public static DateTime GetYearStart(int year);
+        public static DateTime ToDateTime(int year, int week, DayOfWeek dayOfWeek);
+    }
 }