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.
intを に変換するにはどうすればよいTimeSpanですか?
int
TimeSpan
例486000000000はintティック数です。として表してほしいTimeSpan
486000000000
From メソッドを使用すると、次のように、日/時間/分/秒/ミリ秒/ティックを TimeSpam 形式に変換できます。
TimeSpan ts = TimeSpan.FromTicks(486000000000); Console.WriteLine(ts.ToString());
FromTicksあなたはと置き換えることができます
FromTicks