DateTime.Millisecond 屬性(System) | Microsoft Docs
文章推薦指數: 80 %
DateTime date1 = new DateTime(2008, 1, 1, 0, 30, 45, 125); Console.WriteLine("Milliseconds: {0:fff}", date1); // displays Milliseconds: 125
跳到主要內容
已不再支援此瀏覽器。
請升級至MicrosoftEdge,以利用最新功能、安全性更新和技術支援。
下載MicrosoftEdge
其他資訊
目錄
結束焦點模式
語言
閱讀英文
儲存
編輯
共用
Twitter
LinkedIn
Facebook
電子郵件
WeChat
目錄
語言
語言
閱讀英文
儲存
目錄
閱讀英文
儲存
編輯
Twitter
LinkedIn
Facebook
電子郵件
WeChat
目錄
DateTime.Millisecond屬性
參考
此頁面有所助益嗎?
Yes
No
還有其他意見反應嗎?
系統會將意見反應傳送給Microsoft:按下[提交]按鈕,您的意見反應將用來改善Microsoft產品和服務。
隱私權原則。
送出
謝謝。
定義
命名空間:
System
組件:System.Runtime.dll
組件:mscorlib.dll
組件:netstandard.dll
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。
Microsoft對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
本文內容
取得這個執行個體所表示日期的毫秒元件。
public:
propertyintMillisecond{intget();};
publicintMillisecond{get;}
memberthis.Millisecond:int
PublicReadOnlyPropertyMillisecondAsInteger
屬性值
Int32
毫秒元件,以0到999之間的值表示。
範例
下列範例會示範Millisecond屬性。
System::DateTimemoment=System::DateTime(
1999,1,13,3,57,32,11);
//Yeargets1999.
intyear=moment.Year;
//Monthgets1(January).
intmonth=moment.Month;
//Daygets13.
intday=moment.Day;
//Hourgets3.
inthour=moment.Hour;
//Minutegets57.
intminute=moment.Minute;
//Secondgets32.
intsecond=moment.Second;
//Millisecondgets11.
intmillisecond=moment.Millisecond;
System.DateTimemoment=newSystem.DateTime(
1999,1,13,3,57,32,11);
//Yeargets1999.
intyear=moment.Year;
//Monthgets1(January).
intmonth=moment.Month;
//Daygets13.
intday=moment.Day;
//Hourgets3.
inthour=moment.Hour;
//Minutegets57.
intminute=moment.Minute;
//Secondgets32.
intsecond=moment.Second;
//Millisecondgets11.
intmillisecond=moment.Millisecond;
openSystem
letmoment=System.DateTime(1999,1,13,3,57,32,11)
//Yeargets1999.
letyear=moment.Year
//Monthgets1(January).
letmonth=moment.Month
//Daygets13.
letday=moment.Day
//Hourgets3.
lethour=moment.Hour
//Minutegets57.
letminute=moment.Minute
//Secondgets32.
letsecond=moment.Second
//Millisecondgets11.
letmillisecond=moment.Millisecond
DimmomentAsNewSystem.DateTime(1999,1,13,3,57,32,11)
'Yeargets1999.
DimyearAsInteger=moment.Year
'Monthgets1(January).
DimmonthAsInteger=moment.Month
'Daygets13.
DimdayAsInteger=moment.Day
'Hourgets3.
DimhourAsInteger=moment.Hour
'Minutegets57.
DimminuteAsInteger=moment.Minute
'Secondgets32.
DimsecondAsInteger=moment.Second
'Millisecondgets11.
DimmillisecondAsInteger=moment.Millisecond
備註
您可以Millisecond使用"fff"格式規範來顯示內容的字串表示。
例如,下列程式碼會顯示一個字串,其中包含在主控台中的日期和時間的毫秒數。
DateTimedate1=newDateTime(2008,1,1,0,30,45,125);
Console.WriteLine("Milliseconds:{0:fff}",
date1);//displaysMilliseconds:125
letdate1=DateTime(2008,1,1,0,30,45,125)
printfn$"Milliseconds:{date1:fff}"//displaysMilliseconds:125
Dimdate1AsDate=NewDate(2008,1,1,0,30,45,125)
Console.WriteLine("Milliseconds:{0:fff}",_
date1)'displaysMilliseconds:125
您也可以使用"o"標準格式規範來顯示毫秒元件,以及日期和時間值的其他元件。
例如:
DateTimedate2=newDateTime(2008,1,1,0,30,45,125);
Console.WriteLine("Date:{0:o}",
date2);
//Displaysthefollowingoutputtotheconsole:
//Date:2008-01-01T00:30:45.1250000
letdate2=DateTime(2008,1,1,0,30,45,125)
printfn$"Date:{date2:o}"
//Displaysthefollowingoutputtotheconsole:
//Date:2008-01-01T00:30:45.1250000
Dimdate2AsNewDate(2008,1,1,0,30,45,125)
Console.WriteLine("Date:{0:o}",date2)
'Displaysthefollowingoutputtotheconsole:
'Date:2008-01-01T00:30:45.1250000
不過,"o"格式規範的目的不是要用於顯示,而不是用於來回往返或儲存DateTime值。
您也可以使用自訂格式字串,將毫秒與其他日期和時間元件一起顯示,如下列範例所示。
DateTimedate3=newDateTime(2008,1,1,0,30,45,125);
Console.WriteLine("Datewithmilliseconds:{0:MM/dd/yyyHH:mm:ss.fff}",
date3);
//Displaysthefollowingoutputtotheconsole:
//Datewithmilliseconds:01/01/200800:30:45.125
letdate3=DateTime(2008,1,1,0,30,45,125)
printfn$"""Datewithmilliseconds:{date3.ToString"MM/dd/yyyHH:mm:ss.fff"}"""
//Displaysthefollowingoutputtotheconsole:
//Datewithmilliseconds:01/01/200800:30:45.125
Dimdate3AsNewDate(2008,1,1,0,30,45,125)
Console.WriteLine("Datewithmilliseconds:{0:MM/dd/yyyHH:mm:ss.fff}",_
date3)
'Displaysthefollowingoutputtotheconsole:
'Datewithmilliseconds:01/01/200800:30:45.125
適用於
本文內容
延伸文章資訊
- 1Convert python datetime to timestamp in milliseconds - Stack Overflow
- 2C# DateTime.Millisecond屬性代碼示例- 純淨天空
C# DateTime.Millisecond屬性代碼示例,System.DateTime.Millisecond用法.
- 3c# get datetime in milliseconds Code Example
c# get total milliseconds from datetime. csharp by Poor Pollan on Apr 27 2021 Comment ... C# answ...
- 4DateTime.AddMilliseconds() Method in C# - Tutorialspoint
- 5How to show time with milliseconds in Excel? - ExtendOffice