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