コード例 #1
0
ファイル: ECTime.cs プロジェクト: Eric7Apps/BlogSource
 internal void Copy( ECTime ToCopy )
 {
     // This won't be quite exact since it's to the nearest millisecond.
     UTCTime = new DateTime( ToCopy.GetYear(),
                     ToCopy.GetMonth(),
                     ToCopy.GetDay(),
                     ToCopy.GetHour(),
                     ToCopy.GetMinute(),
                     ToCopy.GetSecond(),
                     ToCopy.GetMillisecond(),
                     DateTimeKind.Utc ); // DateTimeKind.Local
 }