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
RegexOptions.cs
Go to the documentation of this file.
1using System;
2
4{
5 // Token: 0x020000BE RID: 190
6 [Flags]
7 public enum RegexOptions
8 {
9 // Token: 0x04000342 RID: 834
10 None = 0,
11 // Token: 0x04000343 RID: 835
12 IgnoreCase = 1,
13 // Token: 0x04000344 RID: 836
14 Multiline = 2,
15 // Token: 0x04000345 RID: 837
17 // Token: 0x04000346 RID: 838
18 Compiled = 8,
19 // Token: 0x04000347 RID: 839
20 Singleline = 16,
21 // Token: 0x04000348 RID: 840
23 // Token: 0x04000349 RID: 841
24 RightToLeft = 64,
25 // Token: 0x0400034A RID: 842
26 ECMAScript = 256,
27 // Token: 0x0400034B RID: 843
29 }
30}