terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
RegexFC.cs
Go to the documentation of this file.
1using System;
4
6{
7 // Token: 0x020000BA RID: 186
8 internal sealed class RegexFC
9 {
10 // Token: 0x060003CA RID: 970 RVA: 0x0000E908 File Offset: 0x0000CB08
11 public RegexFC(bool nullable)
12 {
13 }
14
15 // Token: 0x060003CB RID: 971 RVA: 0x0000E91C File Offset: 0x0000CB1C
16 public RegexFC(char ch, bool not, bool nullable, bool caseInsensitive)
17 {
18 int num = 1;
19 base..ctor();
20 if (not)
21 {
22 RegexCharClass cc = this._cc;
23 return;
24 }
25 this.<CaseInsensitive>k__BackingField = num != 0;
26 }
27
28 // Token: 0x060003CC RID: 972 RVA: 0x0000E950 File Offset: 0x0000CB50
29 public RegexFC(string charClass, bool nullable, bool caseInsensitive)
30 {
31 if (!true)
32 {
33 }
37 }
38
39 // Token: 0x060003CD RID: 973 RVA: 0x0000E97C File Offset: 0x0000CB7C
40 public bool AddFC(RegexFC fc, bool concatenate)
41 {
42 bool canMerge = this._cc.CanMerge;
43 bool canMerge2 = fc._cc.CanMerge;
44 if (this._nullable)
45 {
46 if (!fc._nullable)
47 {
48 return canMerge2;
49 }
50 bool flag = this.<CaseInsensitive>k__BackingField;
52 RegexCharClass cc = this._cc;
53 this.<CaseInsensitive>k__BackingField = flag;
54 RegexCharClass cc2 = fc._cc;
56 }
57 return true;
58 }
59
60 // Token: 0x170000BE RID: 190
61 // (get) Token: 0x060003CE RID: 974 RVA: 0x0000E9F4 File Offset: 0x0000CBF4
62 // (set) Token: 0x060003CF RID: 975 RVA: 0x0000EA08 File Offset: 0x0000CC08
63 public bool CaseInsensitive
64 {
66 get
67 {
69 }
71 private set
72 {
73 }
74 }
75
76 // Token: 0x060003D0 RID: 976 RVA: 0x0000EA18 File Offset: 0x0000CC18
78 {
80 {
81 this._cc.AddLowercase(culture);
82 }
83 return this._cc.ToStringClass();
84 }
85
86 // Token: 0x0400032D RID: 813
88
89 // Token: 0x0400032E RID: 814
90 public bool _nullable;
91
92 // Token: 0x0400032F RID: 815
94 private bool <CaseInsensitive>k__BackingField;
95 }
96}
class f__AnonymousType0<< Count > j__TPar
static RegexCharClass Parse(string charClass)
bool< CaseInsensitive > k__BackingField
Definition RegexFC.cs:94
RegexFC(string charClass, bool nullable, bool caseInsensitive)
Definition RegexFC.cs:29
string GetFirstChars(CultureInfo culture)
Definition RegexFC.cs:77
bool AddFC(RegexFC fc, bool concatenate)
Definition RegexFC.cs:40
RegexFC(char ch, bool not, bool nullable, bool caseInsensitive)
Definition RegexFC.cs:16