Прочетете на английски Редактиране

Споделяне чрез


Point.Parse(String) Method

Definition

Constructs a Point from the specified String.

C#
public static System.Windows.Point Parse(string source);

Parameters

source
String

A string representation of a point.

Returns

The equivalent Point structure.

Exceptions

source is not composed of two comma- or space-delimited double values.

source does not contain two numbers.

-or-

source contains too many delimiters.

Examples

The following example shows how to use the Parse method to convert a String representation of a point into a Point structure.

C#
private Point parseExample()
{

    // Converts a string representation of a point into a Point structure
    // using the Parse static method.
    // pointResult is equal to (1,3).
    Point pointResult = Point.Parse("1,3");

    return pointResult;
}

Applies to

Продукт Версии
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10