mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
13 lines
288 B
C#
13 lines
288 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Netch.Models.GitHubRelease
|
|
{
|
|
public class VersionComparer : IComparer<object>
|
|
{
|
|
public int Compare(object x, object y)
|
|
{
|
|
return VersionUtil.CompareVersion(x?.ToString(), y?.ToString());
|
|
}
|
|
}
|
|
}
|