对象'new DataColumn()'未沿所有异常路径放置。

时间:2017-03-14 13:45:48

标签: c#

我正在向datatable动态添加列。 例如,

dtLayer.Columns.Add(new DataColumn() { ColumnName = "RowId", DataType = typeof(string), ReadOnly = true })}

在编译期间,我收到以下代码警告

object 'new DataColumn()' is not disposed along all exception paths. Call System.IDisposable.Dispose on object 'new DataColumn()' before all references to it are out of scope.

包含using块中的代码,但警告仍然存在。

让我知道任何其他更好的实施方式

0 个答案:

没有答案