Click or drag to resize
ParserTryParseAllT Method
Tries to parse a sequence of strings into a list of values

Namespace: Bio.Util
Assembly: 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
)

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: Boolean
true, if parsing worked; false, otherwise.
See Also