Go to the documentation of this file.00001 using System;
00002 using System.Collections;
00003 using System.Collections.Generic;
00004
00005 namespace N2.Collections
00006 {
00011 public class ItemComparer : ItemComparer<ContentItem>, IComparer
00012 {
00013 #region Constructors
00014
00015 public ItemComparer()
00016 : this("SortOrder")
00017 {
00018 }
00019
00022 public ItemComparer(string sortExpression)
00023 : base(sortExpression)
00024 {
00025 }
00026
00030 public ItemComparer(string detailToCompare, bool inverse)
00031 : base(detailToCompare, inverse)
00032 {
00033 }
00034 #endregion
00035 }
00036 }