| Vector2FParse Method (String) |
Converts the string representation of a 2-dimensional vector to its
Vector2F
equivalent.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static Vector2F Parse(
string s
)
Public Shared Function Parse (
s As String
) As Vector2F
public:
static Vector2F Parse(
String^ s
)
static member Parse :
s : string -> Vector2F
Parameters
- s
- Type: SystemString
A string representation of a 2-dimensional vector.
Return Value
Type:
Vector2F
A
Vector2F that represents the vector specified by the
s
parameter.
Exceptions Remarks
This version of
Parse(String) uses the
CultureInfo associated
with the current thread.
See Also