Matrix::M12 Property
.NET Framework (current version)
Gets or sets the value of the first row and second column of this Matrix structure.
Assembly: WindowsBase (in WindowsBase.dll)
The following example shows how to multiply two Matrix structures and how to assign values to a Matrix when it is declared, and after the structure is declared.
private void multiplicationExample() { Matrix matrix1 = new Matrix(5, 10, 15, 20, 25, 30); Matrix matrix2 = new Matrix(2, 4, 6, 8, 10, 12); // matrixResult is equal to (70,100,150,220,240,352) Matrix matrixResult = Matrix.Multiply(matrix1, matrix2); // matrixResult2 is also // equal to (70,100,150,220,240,352) Matrix matrixResult2 = matrix1 * matrix2; }
.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: