Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.NET時間単位間の変換を可能にする関数は何ですか?
.NET
例:Integer時間を分単位で表すことがわかっている場合.NET、その数値をミリ秒に変換するための最良の方法は何ですか?
Integer
Dim durationInMinutes as Integer = 10 Dim durationInMilliseconds As Integer = <???>(10); // what is the function to use here?
int minutes = 5; int milliseconds = TimeSpan.FromMinutes(minutes).TotalMilliseconds;