scripts
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
|
||||
namespace Mono.Globalization.Unicode
|
||||
{
|
||||
// Token: 0x02000081 RID: 129
|
||||
internal class Contraction
|
||||
{
|
||||
// Token: 0x0600078F RID: 1935 RVA: 0x00018060 File Offset: 0x00016260
|
||||
public Contraction(char[] source, string replacement, byte[] sortkey)
|
||||
{
|
||||
this.Source = source;
|
||||
this.Replacement = replacement;
|
||||
this.SortKey = sortkey;
|
||||
}
|
||||
|
||||
// Token: 0x04000123 RID: 291
|
||||
public readonly char[] Source;
|
||||
|
||||
// Token: 0x04000124 RID: 292
|
||||
public readonly string Replacement;
|
||||
|
||||
// Token: 0x04000125 RID: 293
|
||||
public readonly byte[] SortKey;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user