1
A
回答
4
DateTime.Now.ToString("YYYY-MM-ddTHH:mm:ss");
或
DateTime.UtcNow.ToString("YYYY-MM-ddTHH:mm:ss");
+2
使用'UtcNow'這是正確的,原始代碼指定它在[GMT](http://www.ruby-doc.org/core-2.0.0/Time.html)這不是Utc,但我懷疑這是他們的意圖。 – Mgetz
0
DateTime.UtcNow.ToString( 「YYYY-MM-DDTHH:MM:SS」);
相關問題
- 1. 將objective-c轉換爲ruby
- 2. 無法將C程序轉換爲Ruby
- 3. Ruby將sql轉換爲Arel
- 4. 將Perl轉換爲Ruby Regex
- 5. 將curl轉換爲ruby
- 6. 將Javascript轉換爲Ruby
- 7. Ruby:將proc轉換爲lambda?
- 8. 將php轉換爲ruby
- 9. Hash in Ruby&將python轉換爲ruby
- 10. 將c#RSACryptoServiceProvider轉換爲C++
- 11. 將QT/C++轉換爲C#
- 12. 將C++轉換爲objective-c
- 13. 將C++/CLI轉換爲C#
- 14. 在C中擴展Ruby - 將參數轉換爲C類型
- 15. 將VB轉換爲C#類型轉換
- 16. 將Ruby 1.9.2代碼轉換爲JavaScript?
- 17. Ruby/Rails:將範圍轉換爲散列
- 18. 使用Ruby將ANSI轉換爲UTF8
- 19. Ruby:將一個bitarray轉換爲整數
- 20. Ruby:將HTML/Redcloth轉換爲純文本
- 21. 將shell腳本轉換爲ruby數組
- 22. 將cURL從PHP轉換爲ruby代碼
- 23. Ruby將字符串轉換爲散列
- 24. 在Ruby中將YAML轉換爲XML?
- 25. Ruby RestClient將XML轉換爲散列
- 26. ruby rails將params轉換爲int數組
- 27. 將LWP :: UserAgent從Perl轉換爲Ruby
- 28. Ruby:將BST時間轉換爲UTC
- 29. 將字符串轉換爲DateTime Ruby
- 30. 將PHP代碼轉換爲Ruby
-1由於缺乏[搜索](http://msdn.microsoft.com/en-us/library/system.datetime.utcnow.aspx) – Mgetz