1
0
mirror of synced 2025-01-09 05:01:33 +01:00
OpenTaiko/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerSubtitle.cs

19 lines
555 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace TJAPlayer3.C曲リストードComparers
{
internal sealed class C曲リストードComparerSubtitle : IComparer<C曲リストード>
{
private readonly int _order;
public C曲リストードComparerSubtitle(int order)
{
this._order = order;
}
public int Compare(C曲リストード n1, C曲リストード n2)
{
return _order * n1.strサブタイトル.CompareTo(n2.strサブタイトル);
}
}
}