[corlib] Improve file:// url handling in AppDomainSetup. (#16161)
[mono-project.git] / mcs / class / corlib / System / TimeZoneInfo.WebAssembly.cs
blobe58cb8e5c2186266ac9f876cbf6d33fbc6cba15e
1 #if WASM
3 using System;
4 using System.Collections.Generic;
5 using System.Collections.ObjectModel;
6 using System.IO;
7 using System.Runtime.InteropServices;
9 namespace System {
11 public partial class TimeZoneInfo {
13 static TimeZoneInfo CreateLocal ()
15 return TimeZoneInfo.Utc;
18 static TimeZoneInfo FindSystemTimeZoneByIdCore (string id)
20 throw new NotImplementedException ();
23 static void GetSystemTimeZonesCore (List<TimeZoneInfo> systemTimeZones)
29 #endif