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.
月の名前を web で表示すると、名前が母国語の設定に変換されています。月の英語名を保持する方法はありますか?
例 :
(ハイライトされた単語はヘブライ語で 1 月です)
そして、実際に 'January' として表示されるようにしたいのですが、フォーマットのコードは次のとおりです
productDetails.ArrivalDate.ToString("MMMM d yyyy");
使用する:
productDetails.ArrivalDate.ToString("MMMM d yyyy", new CultureInfo("en-US"));
カルチャ情報を適用してみてください
productDetails.ArrivalDate.ToString("MMMM d yyyy" , new CultureInfo("en-us"));