AccessProviderSample.DatabaseRowInfo.DatabaseRowInfo C# (CSharp) Méthode

DatabaseRowInfo() public méthode

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