Matrix.Parse(String) 方法

定义

将矩阵的 String 表示形式转换为等效的 Matrix 结构。

public:
 static System::Windows::Media::Matrix Parse(System::String ^ source);
public static System.Windows.Media.Matrix Parse (string source);
static member Parse : string -> System.Windows.Media.Matrix
Public Shared Function Parse (source As String) As Matrix

参数

source
String

矩阵的 String 表示形式。

返回

Matrix

等效的 Matrix 结构。

示例

以下示例演示如何将矩阵的字符串表示形式转换为 Matrix 结构。

private Matrix parseExample()
{
    
    Matrix result = Matrix.Parse("1, 2, 3, 4, 5, 6");
    
    // result is equal to (1,2,3,4,5,6).
    return result;
}

适用于