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.
電話システムの日付形式 (例: dd/MM/yyyy または MM/dd/yyyy ) を取得する方法はありますか?
それは機能しますか?
var formattedddMMyyyy = DateTime.Now.ToString("dd/MM/yyyy", CultureInfo.InvariantCulture); var formattedMMddyyyy = DateTime.Now.ToString("MM/dd/yyyy", CultureInfo.InvariantCulture);