SystemInfoTryParse Method (String, Int16)Apache log4net™ SDK Documentation
Parse a string into an Int16 value

Namespace: log4net.Util
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax

public static bool TryParse(
	string s,
	out short val
)

Parameters

s
Type: SystemString
the string to parse
val
Type: SystemInt16
out param where the parsed value is placed

Return Value

Type: Boolean
true if the string was able to be parsed into an integer
Remarks

Attempts to parse the string into an integer. If the string cannot be parsed then this method returns false. The method does not throw an exception.

See Also

Reference