21 lines
688 B
C#
21 lines
688 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Specifies whether applicable <see cref="Overload:System.String.Split" /> method overloads include or omit empty substrings from the return value.</summary>
|
|
/// <filterpriority>1</filterpriority>
|
|
// Token: 0x020006AB RID: 1707
|
|
[Flags]
|
|
[ComVisible(false)]
|
|
public enum StringSplitOptions
|
|
{
|
|
/// <summary>The return value includes array elements that contain an empty string</summary>
|
|
// Token: 0x040019B8 RID: 6584
|
|
None = 0,
|
|
/// <summary>The return value does not include array elements that contain an empty string</summary>
|
|
// Token: 0x040019B9 RID: 6585
|
|
RemoveEmptyEntries = 1
|
|
}
|
|
}
|