static Entity[] GetClosure(ResSet starts, Hashtable table) { if (starts == null) return null; return GetClosure(starts.ToArray(), table); }
static Entity[] GetClosure(ResSet starts, Hashtable table, bool includeStarts) { if (starts == null) return null; return GetClosure(starts.ToArray(), table, includeStarts); }