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
FileShare.cs
Go to the documentation of this file.
1using System;
2
3namespace System.IO
4{
5 // Token: 0x02000537 RID: 1335
6 [Flags]
7 public enum FileShare
8 {
9 // Token: 0x0400157D RID: 5501
10 None = 0,
11 // Token: 0x0400157E RID: 5502
12 Read = 1,
13 // Token: 0x0400157F RID: 5503
14 Write = 2,
15 // Token: 0x04001580 RID: 5504
16 ReadWrite = 3,
17 // Token: 0x04001581 RID: 5505
18 Delete = 4,
19 // Token: 0x04001582 RID: 5506
20 Inheritable = 16
21 }
22}