0

ヘッダーを書き込もうとすると、次のエラー メッセージが表示されます。

{"StartIndex cannot be less than zero.\r\nParameter name: startIndex"}

テーブルのヘッダーにあるトルコ文字に関するものであることがわかりました。トルコ語 Ch を使用しない場合に実行されます。でも。

それを解決する方法はありますか?

4

1 に答える 1

1

あなたはあなたの文化を強制しようとすることができます

// Changes the CurrentUICulture of the current thread to en-US for example. 
Thread.CurrentThread.CurrentUICulture = new CultureInfo( "en-US", false );
于 2012-07-04T12:15:08.300 に答える