例如,我在 c# 中有一个字符串集合;
var example = new string[]{"c", "b", "a", "d"};
然后我对此进行排序,但我的 IComparer 方法不起作用,并且看起来无限循环。
基本上我需要"b"
先来,然后是"c"
,然后我不在乎其他任何人的顺序。
这可能使用 IComparer<string>
和Compare(string x, string y)
方法吗?
编辑:代码
public int Compare(string x, string y)
{
var sOrder = new string[] { "b", "c" };
int index_x = -1;
int index_y = -1;
for (int i = 0; i < sOrder.Length;i++)
{
if (sOrder[i] == x)
index_x = i;
else if (sOrder[i] == y)
index_y = i;
}
if (index_x >= 0 && index_y >= 0)
{
if (index_x < index_y)
{
return -1;
}
else
return 1;
}
return 0;
}