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
Originally posted by scotthannen April 26, 2024
I have never contributed to open source. Can I submit this as a PR with the accompanying unit test? I don't know the rules. Do I need a specific branch name?
public static bool TryGetTimeZoneInfo(string windowsOrIanaTimeZoneId,
[MaybeNullWhen(false)] out TimeZoneInfo timeZoneInfo)
{
if (windowsOrIanaTimeZoneId is null) // <==== THIS
{
timeZoneInfo = null;
return false;
}
// etc
}
The text was updated successfully, but these errors were encountered:
Discussed in #153
Originally posted by scotthannen April 26, 2024
I have never contributed to open source. Can I submit this as a PR with the accompanying unit test? I don't know the rules. Do I need a specific branch name?
The text was updated successfully, but these errors were encountered: