24 lines
761 B
C#
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: 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
|
|
}
|
|
}
|