AccessProviderSample.DatabaseRowInfo.DatabaseRowInfo C# (CSharp) Метод

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

Constructor.
public DatabaseRowInfo ( DataRow row, string name ) : System.Data
row System.Data.DataRow The row information.
name string The row index.
Результат System.Data
        public DatabaseRowInfo(DataRow row, string name)
        {
            RowNumber = name;
            Data = row;
        }
DatabaseRowInfo