Parser Class |
Namespace: Bio.Util
The Parser type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | Parse(String, Type) |
Tries to parse a string into the type given
|
![]() ![]() | ParseT(String) |
Will parse s into T, provided T has a Parse(string) or TryParse(string s, out T t) method defined, or is one of the magical
special cases we've implemented (including ICollection (comma delimited), Nullable and Enums).
|
![]() ![]() | ParseAllT |
Creates a sequences of values from a sequence of strings
|
![]() ![]() | TryParseT |
Will parse s into T, provided T has a Parse(string) or TryParse(string s, out T t) method defined, or is one of the magical
special cases we've implemented (including ICollection (comma delimited), Nullable and Enums).
|
![]() ![]() | TryParseAllT |
Tries to parse a sequence of strings into a list of values
|