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.
うーん..
別の問題があります。TimePicker (Windows Phone 7) 値を UNIX タイムスタンプに変換する必要があります。
これはどのように可能ですか?
ありがとう!
これはうまくいくはずです:
DateTime selectedTime = ((DateTime) TimePicker.Value) public static double ConvertToUnix (DateTime selDate) { var unixStart = new DateTime (1970, 1, 1).ToLocalTime(); return (selDate - unixStart).TotalSeconds; }