UtilitiesArrayFromString Method |
Converts an Array from string.
Namespace:
Hummingbird.TestFramework
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public static Array ArrayFromString(
string text,
Type objectType,
char separator
)
Public Shared Function ArrayFromString (
text As String,
objectType As Type,
separator As Char
) As Array
public:
static Array^ ArrayFromString(
String^ text,
Type^ objectType,
wchar_t separator
)
static member ArrayFromString :
text : string *
objectType : Type *
separator : char -> Array
Parameters
- text
- Type: SystemString
The text represents an Array - objectType
- Type: SystemType
Type of the Array - separator
- Type: SystemChar
The separator which separates different array items.
Return Value
Type:
ArrayArray object from the given string and with the help of given object type and separator.
See Also