LengthParse(String) Method
Converts the string representation of a number to its
Length equivalent.
Namespace: Gemstone.UnitsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.141 -- Release Build+8fc1477299d57116e2a4f3cb8dfe059f814b239b
public static Length Parse(
string s
)
Public Shared Function Parse (
s As String
) As Length
public:
static Length Parse(
String^ s
)
Gemstone.Units.Length.Parse = function(s);
- s String
- A string containing a number to convert.
Length
A
Length equivalent to the number contained in s.
ArgumentNullException | s is null. |
OverflowException |
s represents a number less than MinValue or greater than MaxValue.
|
FormatException | s is not in the correct format. |