【发布时间】:2012-07-04 22:39:23
【问题描述】:
当我尝试编写标题时,它给了我错误消息:
{"StartIndex cannot be less than zero.\r\nParameter name: startIndex"}
我发现它与表格标题中的土耳其字符有关。它在我不使用土耳其语时运行。但是。
有办法解决吗?
【问题讨论】:
当我尝试编写标题时,它给了我错误消息:
{"StartIndex cannot be less than zero.\r\nParameter name: startIndex"}
我发现它与表格标题中的土耳其字符有关。它在我不使用土耳其语时运行。但是。
有办法解决吗?
【问题讨论】:
你可以尝试强迫你的文化
// Changes the CurrentUICulture of the current thread to en-US for example.
Thread.CurrentThread.CurrentUICulture = new CultureInfo( "en-US", false );
【讨论】: