mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 21:42:45 +01:00
26 lines
703 B
C#
26 lines
703 B
C#
using System;
|
|
using CodeStatisticsCore.Input;
|
|
|
|
namespace CodeStatisticsCore.Handling.Utils{
|
|
public struct FileIntValue{
|
|
public static readonly Comparison<FileIntValue> SortMax = (x, y) => y.Value-x.Value;
|
|
public static readonly Comparison<FileIntValue> SortMin = (x, y) => x.Value-y.Value;
|
|
|
|
public readonly File File;
|
|
public readonly int Value;
|
|
|
|
public FileIntValue(File file, int value){
|
|
this.File = file;
|
|
this.Value = value;
|
|
}
|
|
|
|
public override bool Equals(object obj){
|
|
return File.Equals(obj);
|
|
}
|
|
|
|
public override int GetHashCode(){
|
|
return File.GetHashCode();
|
|
}
|
|
}
|
|
}
|