Creates a sequences of values from a sequence of strings
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static IEnumerable<T> ParseAll<T>(
IEnumerable<string> stringSequence
)
Public Shared Function ParseAll(Of T) (
stringSequence As IEnumerable(Of String)
) As IEnumerable(Of T)
public:
generic<typename T>
static IEnumerable<T>^ ParseAll(
IEnumerable<String^>^ stringSequence
)
static member ParseAll :
stringSequence : IEnumerable<string> -> IEnumerable<'T>
Parameters
- stringSequence
- Type: System.Collections.GenericIEnumerableString
The sequence of strings to parse
Type Parameters
- T
- The type to parse into
Return Value
Type:
IEnumerableTA sequence of values
See Also