※ DataTable에 존재하는 Data중 중복된 값 제거하기 #region Row, Row를 비교한다. public static bool RowEqual(object[] Values, object[] OtherValues) { if (Values == null) return false; for (int i = 0; i < Values.Length; i++) { if (!Values[i].Equals(OtherValues[i])) return false; } return true; } #endregion #region 데이터테이블을 distinct한..