ParserTryParseAllT Method |
Tries to parse a sequence of strings into a list of values
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static bool TryParseAll<T>(
IEnumerable<string> stringSequence,
out IList<T> result
)
Public Shared Function TryParseAll(Of T) (
stringSequence As IEnumerable(Of String),
<OutAttribute> ByRef result As IList(Of T)
) As Boolean
public:
generic<typename T>
static bool TryParseAll(
IEnumerable<String^>^ stringSequence,
[OutAttribute] IList<T>^% result
)
static member TryParseAll :
stringSequence : IEnumerable<string> *
result : IList<'T> byref -> bool
Parameters
- stringSequence
- Type: System.Collections.GenericIEnumerableString
The sequence of strings to parse - result
- Type: System.Collections.GenericIListT
The list of values
Type Parameters
- T
- The type of the values
Return Value
Type:
Booleantrue, if parsing worked; false, otherwise.
See Also