Parse

Point.Parse method

Converts the string representation of a point to its class equivalent.

public static Point Parse(string s)
Parameter Type Description
s String A string that contains a point to convert.

Return Value

An instance of Point class that is equivalent to the value specified in s parameter.

Exceptions

exception condition
ArgumentException s does not represent a point in a valid format.

See Also