Polynomial.ToString Method

Definition

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

Overload List

ToString() Returns a string representation of this instance.
ToString(String) Returns a string representation of this instance using the specified string to format the coefficients.
ToString(String, IFormatProvider) Returns a string representation of this instance using the specified string and format provider to format the coefficients.

ToString

Returns a string representation of this instance.
C#
public override string ToString()

Return Value

String
A string representation of this instance.

ToString(String)

Returns a string representation of this instance using the specified string to format the coefficients.
C#
public string ToString(
	string? format
)

Parameters

format  String
 

Return Value

String
A string representation of this instance.

ToString(String, IFormatProvider)

Returns a string representation of this instance using the specified string and format provider to format the coefficients.
C#
public string ToString(
	string? format,
	IFormatProvider? provider
)

Parameters

format  String
 
provider  IFormatProvider
 

Return Value

String
A string representation of this instance.

Implements

IFormattable.ToString(String, IFormatProvider)

See Also