Click or drag to resize
Parser Class
A class for parsing strings to values of a desired type.
Inheritance Hierarchy
SystemObject
  Bio.UtilParser

Namespace: Bio.Util
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public static class Parser

The Parser type exposes the following members.

Methods
  NameDescription
Public methodStatic memberParse(String, Type)
Tries to parse a string into the type given
Public methodStatic memberParseT(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).
Public methodStatic memberParseAllT
Creates a sequences of values from a sequence of strings
Public methodStatic memberTryParseT
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).
Public methodStatic memberTryParseAllT
Tries to parse a sequence of strings into a list of values
Top
See Also