私はicecatシートを1つの巨大なxmlドキュメント(1.7g)として読んでおり、xmlnodereaderを使用しています。
ノードごとに読み取るにはどうすればよいですか。私は、通常、あなたはこれをしないだろうと知っていますが、構造は次のようになります
<file attr=value>...</file>
<file attr=value>...</file>
<file attr=value>...</file>
<file attr=value>...</file>
<file attr=value>...</file>
参照用の既存のコードは次のとおりです。
foreach (BackgroundWorker worker in Pool)
{
if (worker.IsBusy)
continue;
//read xmlnode and pass it to the worker
}