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#でのような文字列"1319556419"をaに変換するにはどうすればよいですか?DateTime
"1319556419"
DateTime
これはUNIXタイムスタンプのように見えます。そうであれば、次のようになります。
Int64 timestamp = Convert.ToInt64("1319556419"); DateTime newDate = new DateTime(1970,1,1).AddSeconds(timestamp);
編集:実際には、見た目ではミリ秒ではなく秒です。
これにより、2011年10月25日の日付が得られます。