You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using TimeZoneInfo.FindSystemTimeZoneById in a .NET MAUI app, the method throws a TimeZoneNotFoundException on iOS for valid timezone IDs like "Eastern Standard Time" and "US Mountain Standard Time", even though the same code works correctly on Windows and Android.
Steps to Reproduce
Steps to reproduce
Create a new .NET MAUI app.
Add the following code in a shared C# context:
var tz = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time");
Run the app on an iOS device or simulator.
Expected Behavior
The method should return the correct 'TimeZoneInfo' object on all platforms, including iOS.