ByRefValueExtensions
01 Syntax
Microsoft.VisualBasic.Language.Values.ByRefValueExtensions
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| Split | 1 | Splits a string into substrings that are based on the characters in the separator array. |
| First | 1 | get the first char |
| StartsWith | 1 | Determines whether the beginning of this string instance matches the specified string. |
| CreateDelegate | 1 | Creates a delegate of the specified type from this method. |
| ToLower | 1 | |
| GetTagValue | 1 |
03 Members
Split(Value(Of String),
Char())Splits a string into substrings that are based on the characters in the separator array.
Parameters
| Name | Type | Description |
|---|---|---|
s | Value(Of String) | - |
delimiter | Char() | A character array that delimits the substrings in this string, an empty array that contains no delimiters, Or null. |
Returns
An array whose elements contain the substrings from this instance that are delimited by one Or more characters in separator. For more information, see the Remarks section.
First(Value(Of String))
get the first char
Parameters
| Name | Type | Description |
|---|---|---|
str | Value(Of String) | - |
StartsWith(Value(Of String),
String)Determines whether the beginning of this string instance matches the specified string.
Parameters
| Name | Type | Description |
|---|---|---|
str | Value(Of String) | - |
substr | String | The string to compare. |
Returns
true if value matches the beginning of this string; otherwise, false.
CreateDelegate(Value(Of MethodInfo),
Type)Creates a delegate of the specified type from this method.
Parameters
| Name | Type | Description |
|---|---|---|
methodInfo | Value(Of MethodInfo) | - |
delegateType | Type | The type of the delegate to create. |
Returns
The delegate for this method.
ToLower(Value(Of String))