mscorlib(4.0.0.0) API with additions
StringSplitOptions.cs
2 
3 namespace System
4 {
6  [ComVisible(false)]
7  [Flags]
8  [__DynamicallyInvokable]
9  public enum StringSplitOptions
10  {
12  [__DynamicallyInvokable]
13  None = 0x0,
15  [__DynamicallyInvokable]
16  RemoveEmptyEntries = 0x1
17  }
18 }
The return value does not include array elements that contain an empty string
Definition: __Canon.cs:3
StringSplitOptions
Specifies whether applicable Overload:System.String.Split method overloads include or omit empty subs...