Polynomial.ToString Method

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

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.

Polynomial.ToString

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

Return Value

String
A string representation of this instance.

Polynomial.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.

Polynomial.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