Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

24 lines
761 B
C#

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: 0x0200013A RID: 314
[Token(Token = "0x200013A")]
[Flags]
[ComVisible(false)]
public enum StringSplitOptions
{
/// <summary>The return value includes array elements that contain an empty string</summary>
// Token: 0x040004BD RID: 1213
[Token(Token = "0x40004BD")]
None = 0,
/// <summary>The return value does not include array elements that contain an empty string</summary>
// Token: 0x040004BE RID: 1214
[Token(Token = "0x40004BE")]
RemoveEmptyEntries = 1
}
}