scripts
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
namespace Mono.Globalization.Unicode
|
||||
{
|
||||
// Token: 0x02000084 RID: 132
|
||||
internal class Level2MapComparer : IComparer
|
||||
{
|
||||
// Token: 0x06000796 RID: 1942 RVA: 0x00018138 File Offset: 0x00016338
|
||||
public int Compare(object o1, object o2)
|
||||
{
|
||||
Level2Map level2Map = (Level2Map)o1;
|
||||
Level2Map level2Map2 = (Level2Map)o2;
|
||||
return (int)(level2Map.Source - level2Map2.Source);
|
||||
}
|
||||
|
||||
// Token: 0x04000129 RID: 297
|
||||
public static readonly Level2MapComparer Instance = new Level2MapComparer();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user