C# 任务、System.Threading.Thread.CurrentThread.CurrentCulture 和 Microsoft.Office.Interop.Excel
我在任务中执行代码以生成 Excel 文件。 但单元格格式仍然是 en-US 格式。 任务是否获取当前线程的 CurrentCulture 参数?
这里有一些代码:
Parallel.ForEach(_blablalist, blabla =>
{
Console.WriteLine(System.Threading.Thread.CurrentThread.CurrentCulture);
Console.WriteLine(System.Threading.Thread.CurrentThread.CurrentUICulture);
Dowork(blabla);
}
输出:
fr-FR
fr-FR
这是我想要的,但 Excel 保持 en-US 格式。 也许任务还有其他参数:/
I execute code in Tasks in order to generate excel files.
But cells format are still in en-US format.
Do Tasks get the CurrentCulture parameter of the Current Thread ?
Here some code :
Parallel.ForEach(_blablalist, blabla =>
{
Console.WriteLine(System.Threading.Thread.CurrentThread.CurrentCulture);
Console.WriteLine(System.Threading.Thread.CurrentThread.CurrentUICulture);
Dowork(blabla);
}
Output :
fr-FR
fr-FR
This is what I want but the excel keep to be in en-US format.
Maybe Tasks have others parameters :/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://msdn.microsoft.com/en-us/library /system.globalization.cultureinfo.aspx
看起来 CultureInfo 仅适用于非托管代码:(
http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo.aspx
Looks like that CultureInfo works only for unmanaged code :(