SortedList可以为每个值获取两个键吗?

时间:2013-10-23 20:59:10

标签: c# list sortedlist

SortedList可以取两个键并返回一个值吗?

我有SortedList<string, double>

类型的标准

但现在我需要传递两个键才能找到值SortedList<string, string, double>

这可能吗?如果没有,请告诉我一些其他的解决方案,我使用字符串和double构建了SortedList,但现在我发现我需要根据两个字符串“调用”那个双倍。

List<string> StatsCheckBoxList = new List<string>();
List<string> PeriodCheckBoxList = new List<string>();


 if (checkBox7.Checked)
    PeriodCheckBoxList.Add(checkBox7.Text);
 if (checkBox8.Checked)
    PeriodCheckBoxList.Add(checkBox8.Text);
 if (checkBox9.Checked)
    PeriodCheckBoxList.Add(checkBox9.Text);
 if (checkBox10.Checked)
    PeriodCheckBoxList.Add(checkBox10.Text);

 if (checkBox19.Checked)
    StatsCheckBoxList.Add(checkBox19.Text);
 if (checkBox35.Checked)
    StatsCheckBoxList.Add(checkBox35.Text);
 if (checkBox34.Checked)
    StatsCheckBoxList.Add(checkBox34.Text);


// print the name of stats onto the first column:
        int l = 0;
        foreach (string Stats in StatsCheckBoxList)
                {

                    NewExcelWorkSheet.Cells[ProductReturnRawData.Count + PeriodCheckBoxList.Count + 20 + l, 1] = Stats;

                                l++;
                }

  // print the time period of each stats onto the row above:
  int h = 0;
  foreach (string period in PeriodCheckBoxList)
             {

               NewExcelWorkSheet.Cells[ProductReturnRawData.Count + PeriodCheckBoxList.Count + 19, 2 + h] = period;

              h++;
              }

//这是一个数据表,现在我已根据用户选择将统计名称打印到第一列,我还根据用户选择打印了一段到最上一行。现在我需要根据选择的统计数据和期间来调用统计数据的值。所以我需要将两个键传递给我的SortedList。类似的东西:

NewExcelWorkSheet.Cells[ProductReturnRawData.Count + 27, 2] = Convert.ToString(productReturnValue["3 Months"]); 

这里的productReturnValue是一个SortedList,它接受一个字符串键并返回一个double值。

1 个答案:

答案 0 :(得分:2)

你需要一个Tuple的arity 2:

public SortedList<Tuple<string,string>,double> mySortedList ;

虽然您可能需要为其提供自定义比较器,例如:

class My2TupleComparer : IComparer<Tuple<string,string>
{
  public int Compare(Tuple<string,string> x, Tuple<string,string> y )
  {
    int cc ;
    if      ( x == null && y == null ) cc =  0 ;
    else if ( x == null && y != null ) cc = -1 ;
    else if ( x != null && y == null ) cc = +1 ;
    else /* ( x != null && y != null ) */
    {
      cc = string.Compare(x.Item1 , y.Item1 , StringComparison.OrdinalIgnoreCase ) ;
      if ( cc == 0 )
      {
        cc = String.Compare( x.Item2 , y.Item2 , StringComparison.OrdinalIgnoreCase ) ;
      }
    }
    return cc ;
  }
}