pinopino
pinopino

Reputation: 274

.net framework TimeZoneInfo.utc property

i found these definition in msdn:

for TimeZoneInfo.Local:

A TimeZoneInfo object that represents the local time zone. The local time zone is the time zone on the computer where the code is executing.

yeah, it`s pretty clearly that i can understand, but for TimeZoneInfo.Utc:

A TimeZoneInfo object that represents the Coordinated Universal Time (UTC) zone.

what`s the utc zone? does this mean "the utc zone is the time zone on the computer where the code is executing but with utc format" ?

thanks in advance.

Upvotes: 0

Views: 116

Answers (1)

Noctis
Noctis

Reputation: 11763

from Wikipedia:

Coordinated Universal Time (UTC) is the primary time standard by which the world regulates clocks and time. It is one of several closely related successors to Greenwich Mean Time (GMT). For most purposes, UTC is synonymous with GMT, but GMT is no longer precisely defined by the scientific community.

Good enough? :)

Upvotes: 3

Related Questions