AccessProviderSample.DatabaseRowInfo.DatabaseRowInfo C# (CSharp) Method

DatabaseRowInfo() public method

Constructor.
public DatabaseRowInfo ( DataRow row, string name ) : System.Data
row System.Data.DataRow The row information.
name string The row index.
return System.Data
        public DatabaseRowInfo(DataRow row, string name)
        {
            RowNumber = name;
            Data = row;
        }
DatabaseRowInfo