System.Data.DataRelationCollection.DataTableRelationCollection.DataTableRelationCollection C# (CSharp) 메소드

DataTableRelationCollection() 개인적인 메소드

private DataTableRelationCollection ( DataTable table, bool fParentCollection ) : System.Collections
table DataTable
fParentCollection bool
리턴 System.Collections
            internal DataTableRelationCollection(DataTable table, bool fParentCollection)
            {
                if (table == null)
                {
                    throw ExceptionBuilder.RelationTableNull();
                }
                _table = table;
                _fParentCollection = fParentCollection;
                _relations = new ArrayList();
            }