2011-06-25 28 views
0

我写了一个struct排序ArrayList中包括自定义结构

public struct SeasonEpisodeNr { public int seasonNr; public int episodeNr; }

在我的计划,我将这些结构添加到一个ArrayList。我如何分类?我试过IComparer,但不幸的是我无法理解它是如何工作的。

+0

小心可变结构。 – Marc

+0

什么是可变结构? – theknut

回答

0

我没有测试此的排序方法,但它是像...

public struct SeasonEpisodeNr: IComparable 
{ 
    public int seasonNr; 
    public int episodeNr; 
    public int CompareTo(Object Item) 
    { 
     SeasonEpisodeNr that = (SeasonEpisodeNr) Item; 

     if (this.seasonNr > that.seasonNr) 
      return -1; 
     if (this.seasonNr < that.seasonNr) 
      return 1; 

     if (this.episodeNr > that.episodeNr) 
      return -1; 
     if (this.episodeNr < that.episodeNr) 
      return 1; 

     return 0; 
    } 
+0

工程就像魅力!谢谢! – theknut

0
public struct SeasonEpisodeNr 
{ 
    public SeasonEpisodeNr(int seasonNr, int episodeNr) 
    { 
     this.seasonNr = seasonNr; 
     this.episodeNr = episodeNr; 
    } 

    public int seasonNr; public int episodeNr; 
} 

static void Main(string[] args) 
{ 
    List<SeasonEpisodeNr> list = new List<SeasonEpisodeNr>(); 
    list.Add(new SeasonEpisodeNr(1, 2)); 
    list.Add(new SeasonEpisodeNr(1, 1)); 
    list.Sort((a, b) => 
    { 
     //implement comparison, e.g. compare season first and if equal compare the epizods 
     int res = a.seasonNr.CompareTo(b.seasonNr); 
     return res != 0 ? res : a.episodeNr.CompareTo(b.episodeNr); 
    }); 
}