Matrix4x4.ToString Method

Definition

Returns a string that represents this matrix.

public:
 override System::String ^ ToString();
public override string ToString ();
public override readonly string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Returns

The string representation of this matrix.

Remarks

The numeric values in the returned string are formatted by using the conventions of the current culture. For example, for the en-US culture, the returned string might appear as { {M11:1.1 M12:1.2 M13:1.3 M14:1.4} {M21:2.1 M22:2.2 M23:2.3 M24:2.4} {M31:3.1 M32:3.2 M33:3.3 M34:3.4} {M41:4.1 M42:4.2 M43:4.3 M44:4.4} }.

Applies to