当我尝试写标题时,它会给我一个错误信息:
{"StartIndex cannot be less than zero.\r\nParameter name: startIndex"}我发现它是关于表格标题中的土耳其字符的。当我不使用土耳其语Ch时,它会运行。然而。
有没有办法解决这个问题?
发布于 2012-07-04 20:15:08
你可以试着强迫你的文化
// Changes the CurrentUICulture of the current thread to en-US for example.
Thread.CurrentThread.CurrentUICulture = new CultureInfo( "en-US", false );https://stackoverflow.com/questions/11328854
复制相似问题