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 中显示月份的名称时,该名称正在转换为本地语言设置。有没有办法保留月份的英文名称?
例子 :
(突出显示的词是希伯来语中的一月)
我希望它实际上显示为 '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"));