|
StringParserParseCheck Method
|
Parses strings and validates they match expected type codes.
Namespace: GSF.ParsingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic static bool ParseCheck(
string[] parsedStrings,
TypeCode[] expectedTypeCodes,
out Object[] values
)
Public Shared Function ParseCheck (
parsedStrings As String(),
expectedTypeCodes As TypeCode(),
<OutAttribute> ByRef values As Object()
) As Boolean
public:
static bool ParseCheck(
array<String^>^ parsedStrings,
array<TypeCode>^ expectedTypeCodes,
[OutAttribute] array<Object^>^% values
)
static member ParseCheck :
parsedStrings : string[] *
expectedTypeCodes : TypeCode[] *
values : Object[] byref -> bool
GSF.Parsing.StringParser.ParseCheck = function(parsedStrings, expectedTypeCodes, values);
View SourceParameters
- parsedStrings String
- expectedTypeCodes TypeCode
- values Object
- the returned values from the try parse.
Return Value
BooleanTRUE if all values parse successfully.
See Also