'Declaration
<CanBeNullAttribute()> Public Shared Function TryParse( _ ByVal input As String, _ ByRef resultList As UAIndexRangeList _ ) As IStringParsingError
'Usage
Dim input As String Dim resultList As UAIndexRangeList Dim value As IStringParsingError value = UAIndexRangeList.TryParse(input, resultList)
[CanBeNull()] public static IStringParsingError TryParse( string input, out UAIndexRangeList resultList )
[CanBeNull()] public: static IStringParsingError^ TryParse( String^ input, [Out] UAIndexRangeList^ resultList )
Parameters
- input
- A string containing an index range list to convert.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - resultList
- When this method returns, contains the UAIndexRangeList value equivalent to the index range list contained in the input arguments, if the conversion succeeded, or
null
if the conversion failed. The conversion fails if the input argument does not contain a valid string representation of an index range list. This parameter is passed uninitialized.The value of this parameter can be
null
(Nothing
in Visual Basic).The individual elements of the parameter value cannot be
null
(Nothing
in Visual Basic).
Return Value
true
if the input parameter was converted successfully; otherwise, false
.
This method can return null
(Nothing
in Visual Basic).