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.
日付と時刻の形式を秒に変換する C# コード。例: 2013-04-03 01:00:00 から 1364950800
Unix ファイルの時刻 (つまり、1970 年 1 月 1 日以降) を探しているようです。
var unixFileTimeOrigin = DateTime.Parse("1970-01-01"); var date = DateTime.Parse("2013-04-03 01:00:00"); Console.WriteLine((date - unixFileTimeOrigin).TotalSeconds); >>> 1364950800