System.Data.FillErrorEventArgs.FillErrorEventArgs C# (CSharp) Метод

FillErrorEventArgs() публичный Метод

public FillErrorEventArgs ( DataTable dataTable, object values )
dataTable DataTable
values object
        public FillErrorEventArgs(DataTable dataTable, object[] values)
        {
            _dataTable = dataTable;
            _values = values;
            if (null == _values)
            {
                _values = Array.Empty<object>();
            }
        }
FillErrorEventArgs