m
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user