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
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Specifies whether applicable <see cref="Overload:System.String.Split" /> method overloads include or omit empty substrings from the return value.</summary>
// Token: 0x02000141 RID: 321
[Token(Token = "0x2000141")]
[Flags]
[ComVisible(false)]
public enum StringSplitOptions
{
/// <summary>The return value includes array elements that contain an empty string</summary>
// Token: 0x040004C7 RID: 1223
[Token(Token = "0x40004C7")]
None = 0,
/// <summary>The return value does not include array elements that contain an empty string</summary>
// Token: 0x040004C8 RID: 1224
[Token(Token = "0x40004C8")]
RemoveEmptyEntries = 1
}
}