This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>Specifies the position in a stream to use for seeking.</summary>
// Token: 0x020002C5 RID: 709
[Token(Token = "0x20002C5")]
[ComVisible(true)]
[Serializable]
public enum SeekOrigin
{
/// <summary>Specifies the beginning of a stream.</summary>
// Token: 0x04000DDD RID: 3549
[Token(Token = "0x4000DDD")]
Begin,
/// <summary>Specifies the current position within a stream.</summary>
// Token: 0x04000DDE RID: 3550
[Token(Token = "0x4000DDE")]
Current,
/// <summary>Specifies the end of a stream.</summary>
// Token: 0x04000DDF RID: 3551
[Token(Token = "0x4000DDF")]
End
}
}