Matrix<T>.ToString Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

ToString()Returns a string that represents the current object.
ToString(String) Returns a String representation of this Matrix<T>.
ToString(String, IFormatProvider) Returns a String representation of this Matrix<T>.

ToString

Returns a string that represents the current object.
C#
public override string? ToString()

Return Value

String
A string that represents the current object.

ToString(String)

Returns a String representation of this Matrix<T>.
C#
public string ToString(
	string? format
)

Parameters

format  String
A String specifying the format to use.

Return Value

String
A String representation of this Matrix<T>.

ToString(String, IFormatProvider)

Returns a String representation of this Matrix<T>.
C#
public string ToString(
	string? format,
	IFormatProvider? formatProvider
)

Parameters

format  String
A String specifying the format to use.
formatProvider  IFormatProvider
The IFormatProvider to use to format the value.

Return Value

String
A String representation of this Matrix<T>.

Implements

IFormattable.ToString(String, IFormatProvider)

See Also