[]
Converts a string to a StringItem.
public static implicit operator StringItem(string value)
Public Shared Widening Operator CType(value As String) As StringItem
Type | Name | Description |
---|---|---|
string | value | A string used as the content of StringItem. |
Type | Description |
---|---|
StringItem | A StringItem that represents the converted string. |
Converts a StringItem to a string.
public static implicit operator string(StringItem value)
Public Shared Widening Operator CType(value As StringItem) As String
Type | Name | Description |
---|---|---|
StringItem | value | A StringItem. |
Type | Description |
---|---|
string | A string that represents the converted StringItem. |