System.Data.DataRowBuilder.DataRowBuilder C# (CSharp) 메소드

DataRowBuilder() 개인적인 메소드

private DataRowBuilder ( DataTable table, int record ) : System.Collections
table DataTable
record int
리턴 System.Collections
        internal DataRowBuilder(DataTable table, int record)
        {
            _table = table;
            _record = record;
        }
    }
DataRowBuilder