Click or drag to resize
ParserTryParseT Method
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).

Namespace: Bio.Util
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public static bool TryParse<T>(
	string s,
	out T t
)

Parameters

s
Type: SystemString
the string to parse
t
Type: T
the resulting value

Type Parameters

T
the type to parse into

Return Value

Type: Boolean
true, if parsing worked; false, otherwise.
See Also