I have a ZonedDateTime instance and I'd like to convert it to local DateTime in particular timezone - I know timeZoneId for that one.
Question is - how do I do that? I was ready to do smth like zonedDateTime.ToDateTimeUtc().AddHours(offsetInHours), where offsetInHours represent the difference in hours between that particular timezone and UTC.
And then I thought - "wait, I want not just any offset, I want offset from a particular point in time (taking into account DST)". And now I'm stuck. Does NodaTime know about what was the offset at given point in time at given timezone? Going through the docs, I didn't find the method.