Check out example codes for "c# convert utc to est". It will help you in understanding the concepts better.
Code Example 1
var timeUtc = DateTime.UtcNow;
var easternZone = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time");
var today = TimeZoneInfo.ConvertTimeFromUtc(timeUtc, easternZone);
Learn ReactJs, React Native from akashmittal.com