StringView
Constructs a StringView over an entire string.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Constructor
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
StringView(string)
Constructs a StringView over an entire string.
public StringView(string baseString)
Parameters
The base string.
StringView(string, int)
Constructs a StringView from a string, starting at index startIndex.
public StringView(string baseString, int startIndex)
Parameters
StringView(string, int, int)
Constructs a StringView from a string, starting at index startIndex and ending at, but not including, index endIndex.
public StringView(string baseString, int startIndex, int endIndex)