This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -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;
}
}