Код: Выделить всё
public static DateTime GetSpainDateTimeNow()
{
var tz = TimeZoneInfo.FindSystemTimeZoneById("Romance Standard Time");
var offset = tz.GetUtcOffset(DateTime.UtcNow);
return DateTimeOffset.UtcNow.ToOffset(offset).DateTime;
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... ork-access