ケース 1:
for(int =0;i<1000;i++)
{
Datatable dt=new Datatable();
//Perform some operation
dt.Dispose();
}
ケース 2:
Datatable dt=new Datatable();
for(int =0;i<1000;i++)
{
//Perform some operation
dt=null;
}
ループ内でデータ テーブルを使用したいのですが、ループ内で毎回オブジェクトを作成して破棄するか、ループの前にオブジェクトを作成するか、どちらの場合がより効率的でしょうか?